/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FDFAF5;
  --fg: #1C1C1C;
  --card: #FFFFFF;
  --primary: #E8A020;
  --primary-hover: #D4901A;
  --secondary: #F5EFE4;
  --muted: #6B5E4E;
  --muted2: #9C8E7E;
  --border: #E8DDD0;
  --green: #2D4A2D;
  --green-light: #9FD4B8;
  --green-bg: #E1F5EE;
  --heading: #2D4A2D;
  --radius: 0.5rem;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select { font-family: inherit; }

.hidden { display: none !important; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.italic { font-style: italic; }
.serif { font-family: var(--font-serif); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-topbar {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
}
.btn-topbar:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-ghost {
  color: var(--muted);
  padding: 0.5rem 1rem;
  font-weight: 300;
  background: transparent;
}
.btn-ghost:hover { color: var(--fg); }

.btn-dark {
  background: var(--green);
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
}
.btn-dark:hover { opacity: 0.9; }

.btn-gold {
  background: var(--primary);
  color: var(--fg);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn-gold:hover { background: var(--primary-hover); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 300;
  background: transparent;
}
.btn-outline:hover { background: var(--secondary); }

.btn-lg { padding: 0.875rem 2rem; }

.btn-submit {
  width: 100%;
  height: 3.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--green);
  padding: 0.625rem 1rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.topbar-text {
  color: rgba(225, 245, 238, 0.9);
  font-weight: 300;
  text-align: center;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .nav-inner { height: 5rem; }
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .logo { font-size: 1.875rem; }
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

.nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-right { display: flex; }
}

.lang-toggle {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.2s;
}
.lang-toggle:hover { color: var(--fg); }

.mobile-menu-btn {
  display: block;
  color: var(--fg);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.mobile-menu-inner {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 300;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--fg); }

.mobile-menu-divider {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.mobile-lang-btn {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
  text-align: left;
}

.mobile-login { justify-content: flex-start; padding-left: 0; }
.mobile-connect { width: 100%; }

/* ===== HERO ===== */
.hero-grid-pattern {
  background-color: var(--bg);
  background-image: radial-gradient(rgba(45, 74, 45, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 8rem 0;
  }
}

.hero-content {
  flex: 1;
  max-width: 42rem;
}

.hero-tag {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-tag { font-size: 0.875rem; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--heading);
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-sub {
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-sub { font-size: 1.25rem; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}

.hero-note {
  color: var(--muted2);
  font-size: 0.875rem;
  font-weight: 300;
}

.hero-mockup {
  display: none;
  flex: 1;
  max-width: 28rem;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-mockup { display: block; }
}

@media (min-width: 1280px) {
  .hero-mockup { max-width: 32rem; }
}

.mockup-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(232, 160, 32, 0.05);
  border-radius: 1rem;
  filter: blur(32px);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.dash-header {
  padding: 1.25rem;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-title {
  font-weight: 500;
  color: #f0ede6;
  font-size: 0.875rem;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.live-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #34d399;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-core {
  position: relative;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10b981;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.live-text {
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 500;
}

.dash-orders {
  border-bottom: 1px solid #2a2a2a;
}

.dash-order {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
  transition: background 0.2s;
}
.dash-order:last-child { border-bottom: none; }
.dash-order:hover { background: #222; }

.order-info { flex: 1; min-width: 0; }

.order-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.order-id {
  color: #f0ede6;
  font-weight: 500;
  font-size: 0.875rem;
}

.order-time {
  color: rgba(240, 237, 230, 0.5);
  font-size: 0.75rem;
}

.order-items {
  color: rgba(240, 237, 230, 0.6);
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-status {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  flex-shrink: 0;
}

.status-new { background: rgba(232, 160, 32, 0.2); color: #E8A020; }
.status-preparing { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.status-ready { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.dash-footer {
  padding: 0.75rem 1.25rem;
  background: #151515;
  border-top: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-label {
  color: rgba(240, 237, 230, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.125rem;
}

.dash-value {
  color: #f0ede6;
  font-weight: 500;
  font-size: 0.875rem;
}

.dash-revenue { color: var(--primary); }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .social-inner {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.social-text {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
}

.social-logo {
  height: 6rem;
  width: auto;
  object-fit: contain;
}

.social-note {
  color: var(--muted2);
  font-size: 0.75rem;
  font-weight: 300;
}

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 4rem; }

.section-tag {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .section-tag { font-size: 0.875rem; }
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  max-width: 42rem;
  color: var(--heading);
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

/* ===== FEATURES ===== */
.features {
  padding: 5rem 0;
  background: var(--bg);
}

@media (min-width: 1024px) {
  .features { padding: 8rem 0; }
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

@media (min-width: 1024px) {
  .feature-card { padding: 2.5rem; }
}

.feature-card:hover { border-color: var(--primary); }

.feature-num-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: rgba(232, 160, 32, 0.2);
}

.feature-line {
  flex: 1;
  height: 1px;
  background: var(--primary);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading);
}

@media (min-width: 1024px) {
  .feature-title { font-size: 1.5rem; }
}

.feature-desc {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0;
  background: var(--secondary);
}

@media (min-width: 1024px) {
  .how-it-works { padding: 8rem 0; }
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.step { position: relative; }

.step-number {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  color: rgba(232, 160, 32, 0.3);
  margin-bottom: 1rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .step-number { font-size: 4.5rem; }
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

@media (min-width: 1024px) {
  .step-title { font-size: 1.5rem; }
}

.step-desc {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
  background: var(--green);
  border-top: 1px solid #3D5A3D;
  border-bottom: 1px solid #3D5A3D;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid #3D5A3D;
  border-bottom: 1px solid #3D5A3D;
}

.stat-item:nth-child(2) { border-right: none; }

@media (min-width: 1024px) {
  .stat-item {
    padding: 3.5rem 1.5rem;
    border-bottom: none;
  }
  .stat-item:nth-child(2) { border-right: 1px solid #3D5A3D; }
  .stat-item:last-child { border-right: none; }
}

@media (max-width: 1023px) {
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; }
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-value { font-size: 2.25rem; }
}

.stat-label {
  color: var(--green-light);
  font-size: 0.875rem;
  font-weight: 300;
}

/* ===== PRICING ===== */
.pricing {
  padding: 3rem 0;
  background: var(--bg);
}

@media (min-width: 1024px) {
  .pricing { padding: 5rem 0; }
}

.pricing-tiers { margin-bottom: 2rem; }
.network-discount { margin-bottom: 2rem; }

.pricing-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading);
}

@media (min-width: 640px) {
  .pricing-subtitle { font-size: 1.5rem; }
}

.table-wrap { overflow-x: auto; }

.pricing-table {
  width: 100%;
  max-width: 42rem;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table thead tr { background: var(--secondary); }

.pricing-table th {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.pricing-table tbody tr { background: #fff; transition: background 0.2s; }
.pricing-table tbody tr:hover { background: rgba(245, 239, 228, 0.5); }
.pricing-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid var(--border);
}

.cap-row { background: rgba(245, 239, 228, 0.8) !important; }

.tier-rate {
  font-family: var(--font-serif);
  color: var(--primary) !important;
  font-size: 1.125rem;
  font-weight: 400 !important;
}

.vat-note {
  color: var(--muted2);
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 1rem;
}

/* Pricing Card */
.pricing-card {
  max-width: 42rem;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .pricing-card { padding: 2rem; }
}

.pricing-main { margin-bottom: 1.25rem; }

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-big {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--primary);
}

@media (min-width: 1024px) {
  .pricing-big { font-size: 3.75rem; }
}

.pricing-per {
  color: var(--muted);
  font-weight: 300;
}

.pricing-note {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.benefit-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===== CALCULATOR ===== */
.calculator {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

@media (min-width: 1024px) {
  .calculator { padding: 1.5rem; }
}

.calc-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

@media (min-width: 640px) {
  .calc-title { font-size: 1.25rem; }
}

.calc-step { margin-bottom: 1.5rem; }

.calc-question {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .calc-question { font-size: 1.125rem; }
}

.branch-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .branch-options { grid-template-columns: repeat(4, 1fr); }
}

.branch-btn {
  padding: 0.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.branch-btn:hover { border-color: rgba(232, 160, 32, 0.5); }

.branch-btn.active {
  border-color: var(--primary);
  background: #fff;
}

.branch-label {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

.branch-btn.active .branch-label { color: var(--heading); }

.branch-discount {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.calc-sliders { margin-bottom: 1rem; }

.slider-group { margin-bottom: 1rem; }

.slider-label {
  display: block;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.slider-value {
  display: block;
  font-size: 1.875rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted2);
}

.calc-note {
  color: var(--muted2);
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 1rem;
}

.calc-results {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .calc-results { grid-template-columns: repeat(3, 1fr); }
}

.result-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.result-ours { border: 1px solid var(--primary); }
.result-third { border: 1px solid #fca5a5; }
.result-savings { border: 1px solid #86efac; }

.result-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
}

@media (min-width: 1024px) {
  .result-value { font-size: 2.25rem; }
}

.result-ours .result-value { color: var(--primary); }
.result-third .result-value { color: #ef4444; }
.result-savings .result-value { color: #16a34a; }

.result-sub {
  color: var(--muted2);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.calc-summary {
  background: #F0F9F4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.summary-text {
  color: var(--heading);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.summary-vat {
  color: var(--muted2);
  font-size: 0.75rem;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 0;
  background: var(--green);
}

@media (min-width: 1024px) {
  .contact { padding: 8rem 0; }
}

.contact-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact .section-tag {
  color: var(--primary);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 640px) {
  .contact-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .contact-title { font-size: 3rem; }
}

.contact-sub {
  color: var(--green-light);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group { text-align: left; }

.form-input, .form-select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: var(--muted2); }
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(232, 160, 32, 0.2);
}

.form-input.error { border-color: #f87171; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239C8E7E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color: var(--muted2);
}

.form-select:has(option:checked:not([disabled])) {
  color: var(--fg);
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #f87171;
}

.contact-email {
  margin-top: 2.5rem;
  color: rgba(159, 212, 184, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
}

.contact-email a {
  color: var(--primary);
  transition: color 0.2s;
}
.contact-email a:hover { color: var(--primary-hover); }

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  border-top: 1px solid #2a2a2a;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer-left a, .footer-right a {
  transition: color 0.2s;
}
.footer-left a:hover, .footer-right a:hover { color: var(--muted2); }

.footer-dot { display: none; }

@media (min-width: 640px) {
  .footer-dot { display: inline; }
}
