:root {
  --bg: #f9f8f6;
  --bg-alt: #ffffff;
  --surface: #f0ede8;
  --border: #e2ddd8;
  --text: #1c1917;
  --text-secondary: #78716c;
  --accent: #b45309;
  --accent-hover: #92400e;
  --accent-light: #fef3c7;
  --dark: #1c1917;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
  --transition: 0.2s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition), background-color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background-color: var(--surface);
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 22px;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: background-color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: var(--surface);
  color: var(--text);
}

.mobile-nav-cta {
  display: block;
  margin-top: 8px;
  padding: 12px 16px;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
}

.footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

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

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

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

.footer-col-link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.footer-legal-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.65);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #292524;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,0.75);
}

.cookie-banner-text a {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-text a:hover {
  color: #f59e0b;
}

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

.cookie-accept {
  padding: 9px 22px;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition);
  border: none;
  font-family: var(--font-body);
}

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

.cookie-decline {
  padding: 9px 16px;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.75);
}

.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.hero-image-badge-icon {
  width: 36px;
  height: 36px;
  background-color: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-image-badge-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.hero-image-badge-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
}

.features {
  background-color: var(--bg-alt);
}

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

.feature-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180,83,9,0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background-color: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-body);
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.how-it-works {
  background-color: var(--surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(254, 243, 199, 0.8);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-body);
}

.step-desc {
  font-size: 0.9rem;
}

.showcase {
  background-color: var(--bg-alt);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-inner.reversed {
  direction: rtl;
}

.showcase-inner.reversed > * {
  direction: ltr;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.showcase-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.showcase-title {
  margin-bottom: 20px;
}

.showcase-desc {
  margin-bottom: 24px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.showcase-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.showcase-list-item i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.cta-section {
  background-color: var(--text);
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section .cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: 1.125rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--accent);
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.75;
}

.breadcrumb-sep {
  font-size: 11px;
  opacity: 0.5;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.about-story-content {}

.about-story-content h2 {
  margin-bottom: 20px;
}

.about-story-content p {
  margin-bottom: 16px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

.team-card {
  text-align: center;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--surface);
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--border);
}

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

.team-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.team-role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-item {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color var(--transition);
}

.value-item:hover {
  border-color: rgba(180,83,9,0.25);
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-body);
}

.value-desc {
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.info-toc {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-toc-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.info-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-toc-link {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.info-toc-link:hover {
  background-color: var(--surface);
  color: var(--text);
}

.info-section {
  margin-bottom: 60px;
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
  font-family: var(--font-body);
}

.info-section p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.info-section p:last-child {
  margin-bottom: 0;
}

.info-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
  font-family: var(--font-body);
}

.info-highlight {
  background-color: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.info-highlight p {
  color: #7c2d12;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.info-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.info-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.info-feature-item i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.contact-item-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--text);
}

.contact-item-value a {
  color: var(--accent);
  transition: opacity var(--transition);
}

.contact-item-value a:hover {
  opacity: 0.75;
}

.contact-note {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 32px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-note i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-form-wrap {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-form-wrap > p {
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-label span {
  color: var(--accent);
}

.form-input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background-color: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

.form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.55;
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 16px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.form-note i {
  font-size: 15px;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-top: 1px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  margin: 0 auto 20px;
}

.form-success h3 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.form-success p {
  font-size: 0.9375rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.legal-meta-item i {
  color: var(--accent);
  font-size: 16px;
}

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

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-section h3 {
  font-size: 1.0625rem;
  margin: 20px 0 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 14px;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  list-style: disc;
  line-height: 1.7;
}

.legal-section ol li {
  list-style: decimal;
}

.legal-divider {
  height: 1px;
  background-color: var(--border);
  margin: 40px 0;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.cookies-table th {
  text-align: left;
  padding: 10px 14px;
  background-color: var(--surface);
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--border);
}

.cookies-table td {
  padding: 10px 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.cookies-table tr:nth-child(even) td {
  background-color: var(--bg);
}

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .info-grid {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .hero {
    padding: 60px 0 72px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .showcase-inner,
  .showcase-inner.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-toc {
    position: relative;
    top: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .contact-form-wrap {
    padding: 24px 20px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .page-hero {
    padding: 56px 0;
  }
  .info-features-list {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
