:root {
  --color-bg: #FAFBFC;
  --color-bg-alt: #F5F0EE;
  --color-surface: #FFFFFF;
  --color-text: #1A1D23;
  --color-text-muted: #5A6270;
  --color-text-light: #8A92A0;
  --color-accent: #C23A2B;
  --color-accent-hover: #A52F22;
  --color-accent-light: #FCEEED;
  --color-border: #E2E5EB;
  --color-border-light: #F0F2F5;
  --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 88px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 4vw, 3rem); }
.hero-text h1 {
  font-size: clamp(2.25rem, 3.5vw, 2.75rem);
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .hero-text h1 {
    white-space: normal;
  }
}
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p {
  margin-bottom: var(--space-md);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-accent {
  color: var(--color-accent);
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container-narrow {
  max-width: var(--container-narrow);
}
.section {
  padding: var(--space-5xl) 0;
}
.section-sm {
  padding: var(--space-3xl) 0;
}
.grid {
  display: grid;
  gap: var(--space-xl);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 var(--space-lg);
  }
  .section {
    padding: var(--space-3xl) 0;
  }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: var(--transition-base);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-xs);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.site-logo .logo-mark {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo .logo-mark svg {
  width: 18px;
  height: 18px;
  color: white;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.nav-links {
  display: flex;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.header-phone {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.header-phone svg {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  padding: var(--space-xl);
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--color-accent);
  color: white;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-muted);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
}
.btn-ghost:hover {
  background: var(--color-bg-alt);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
.card h3 {
  margin-bottom: var(--space-sm);
}
.card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
}
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(194, 58, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 58, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 58, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 58, 43, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-text h1 {
  margin-bottom: var(--space-lg);
}
.hero-text .lead {
  margin-bottom: var(--space-2xl);
}
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-visual .shape {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-accent) 0%, #8B2A1F 100%);
  border-radius: var(--radius-xl);
  position: relative;
  transform: rotate(-3deg);
}
.hero-visual .shape::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}
.hero-visual .shape-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transform: rotate(3deg);
}
.hero-visual .shape-text .step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}
.hero-visual .shape-text .steps {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}
.hero-visual .shape-text .step-item {
  display: block;
}
.hero-visual .shape-text .step-arrow {
  opacity: 0.6;
  font-size: 0.8em;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-visual .shape {
    width: 100%;
    transform: rotate(-2deg);
  }
}
@media (max-width: 640px) {
  .hero-visual {
    max-width: 250px;
    margin-top: var(--space-lg);
  }
  .hero-visual .shape-text .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em 0.3em;
    font-size: 0.95rem;
    padding: 0 var(--space-xs);
  }
  .hero-visual .shape-text .step-label {
    font-size: 0.65rem;
  }
  .hero-visual .shape-text .step-arrow {
    font-size: 0.85em;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.section-header {
  max-width: 700px;
  margin-bottom: var(--space-3xl);
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header .label {
  display: block;
  margin-bottom: var(--space-md);
}
.section-header h2 {
  margin-bottom: var(--space-md);
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 0;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--color-border);
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}
.step:hover .step-number {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: scale(1.1);
}
.step h4 {
  margin-bottom: var(--space-sm);
}
.step p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}
.case-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.case-sector {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
}
.case-context {
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.case-challenge {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}
.case-actions {
  margin-bottom: var(--space-lg);
}
.case-actions h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.case-actions ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.case-actions li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}
.case-actions li::before {
  content: '→';
  color: var(--color-accent);
  flex-shrink: 0;
}
.case-outcome {
  background: var(--color-bg-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}
.case-outcome h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.case-outcome p {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4xl);
  align-items: start;
}
.founder-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  text-align: center;
}
.founder-photo {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo svg {
  width: 80px;
  height: 80px;
  color: var(--color-text-light);
}
.founder-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}
.founder-title {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}
.founder-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}
.founder-links a {
  width: 40px;
  height: 40px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}
.founder-links a:hover {
  background: var(--color-accent);
  color: white;
}
.values-list {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.value-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
.value-content h4 {
  margin-bottom: var(--space-xs);
}
.value-content p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.sector-tag {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.insight-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}
.insight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}
.insight-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}
.insight-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}
.insight-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9375rem;
}
.insight-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}
.insight-card:hover .insight-link svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}
.contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
}
.contact-method {
  margin-bottom: var(--space-2xl);
}
.contact-method:last-child {
  margin-bottom: 0;
}
.contact-method h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.contact-method h4 svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}
.contact-method p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.contact-method a {
  color: var(--color-accent);
  font-weight: 500;
}
.contact-method a:hover {
  text-decoration: underline;
}
.email-template {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
}
.email-template h3 {
  margin-bottom: var(--space-lg);
}
.template-box {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}
.template-box strong {
  color: var(--color-accent);
}
.subject-suggestions h4 {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.subject-suggestions ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.subject-suggestions li {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}
.response-time {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}
.response-time svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.cta-section {
  background: linear-gradient(135deg, var(--color-text) 0%, #2D3748 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 58, 43, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  color: white;
  margin-bottom: var(--space-md);
  position: relative;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-section .btn-primary {
  background: white;
  color: var(--color-text);
}
.cta-section .btn-primary:hover {
  background: var(--color-bg);
}
.cta-section .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer-brand .site-logo {
  color: white;
  margin-bottom: var(--space-lg);
}
.footer-brand .site-logo .logo-mark {
  background: var(--color-accent);
}
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-nav h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-nav a {
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}
.footer-nav a:hover {
  color: white;
}
.footer-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  color: rgba(255, 255, 255, 0.8);
}
.footer-slogan {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
.footer-legal {
  display: flex;
  gap: var(--space-xl);
}
.footer-legal a:hover {
  color: white;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
}
.page-header {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 58, 43, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .label {
  margin-bottom: var(--space-md);
}
.page-header h1 {
  margin-bottom: var(--space-md);
  position: relative;
}
.page-header .lead {
  max-width: 600px;
  position: relative;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
[class*="animate-"] {
  opacity: 0;
}
.map-section {
  width: 100%;
  background: var(--color-bg-alt);
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.legal-content {
  background: var(--color-surface);
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.legal-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}
.legal-content ul li {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  position: relative;
  list-style: disc;
}
.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--color-accent-hover);
}
.legal-intro {
  font-size: 1.125rem;
  color: var(--color-text);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
}
@media (max-width: 768px) {
  .legal-content {
    padding: var(--space-xl);
  }
}
.hero-with-image .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, transparent 60%);
}
.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  transition: transform var(--transition-base);
}
.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 58, 43, 0.9) 0%, rgba(139, 42, 31, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  color: white;
}
.hero-image-overlay .step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}
.hero-image-overlay .steps {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}
.hero-image-overlay .step-item {
  display: block;
}
.hero-image-overlay .step-arrow {
  opacity: 0.6;
  font-size: 0.8em;
}
.page-header-with-image {
  position: relative;
  overflow: hidden;
}
.page-header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0%, transparent 100%);
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.page-header-text {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .page-header-image {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 100%);
  }
}
.founder-photo-real {
  background: none;
  overflow: hidden;
}
.founder-photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.collaboration-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}
.collaboration-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.collaboration-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translate(-8px, -8px);
  transition: all var(--transition-base);
}
.collaboration-image:hover::before {
  opacity: 1;
  transform: translate(-12px, -12px);
}
.collaboration-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.collaboration-image:hover img {
  transform: scale(1.03);
}
.collaboration-content {
  padding: var(--space-xl) 0;
}
@media (max-width: 1024px) {
  .collaboration-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .collaboration-image {
    max-width: 500px;
    margin: 0 auto;
  }
}
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.img-hover-zoom img {
  transition: transform var(--transition-slow);
}
.img-hover-zoom:hover img {
  transform: scale(1.05);
}
.accent-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
}
.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  transition: all var(--transition-base);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-role {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
  align-items: center;
}
.story-image {
  position: relative;
}
.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.story-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}
.story-content {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .story-image {
    max-width: 450px;
    margin: 0 auto;
  }
  .story-content {
    max-width: 100%;
    text-align: center;
  }
}
.how-we-work-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4xl);
  align-items: center;
}
.how-we-work-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.how-we-work-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 58, 43, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.how-we-work-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.how-we-work-content {
  max-width: 550px;
}
.how-we-work-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.how-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.how-step:hover {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.how-step-number {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.how-step h4 {
  margin-bottom: var(--space-xs);
}
.how-step p {
  color: var(--color-text-muted);
  margin-bottom: 0;
  font-size: 0.9375rem;
}
@media (max-width: 1024px) {
  .how-we-work-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .how-we-work-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .how-we-work-content {
    max-width: 100%;
  }
}
.image-banner {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}
.image-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(26, 29, 35, 0.75) 100%);
}
.image-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
  text-align: center;
  margin: 0 auto;
}
.image-banner-content h2 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}
.image-banner-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .image-banner-bg {
    background-attachment: scroll;
  }
}
