/* ============================================================
   EVOLUTIVA LABS — Design System Tokens & Global Styles
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Evergreen — primary */
  --ev-100: #e0f2ec;
  --ev-300: #7ecfb0;
  --ev-500: #2d9e72;
  --ev-700: #145840;  /* primary */
  --ev-800: #0e3e2e;
  --ev-900: #092619;  /* ink-dark bg */
  --ev-950: #051510;

  /* Signal Lime — accent */
  --lime-200: #dff5a0;
  --lime-400: #a8d640;
  --lime-600: #C6F24E;  /* main accent */

  /* Warm Amber */
  --amber-200: #f5e4c0;
  --amber-500: #E29A33;
  --amber-600: #c47e1a;

  /* Clay */
  --clay-300: #e8a98e;
  --clay-500: #D2613F;  /* data-viz */
  --clay-600: #b54a2a;

  /* Warm Neutrals (green-tinted greys) */
  --ink:     #1a2620;
  --n-700:   #2e3d35;
  --n-500:   #4a6055;
  --n-300:   #8aa396;
  --n-200:   #b8ccc4;  /* line */
  --n-100:   #d8e4df;
  --paper:   #f4f1eb;
  --white:   #ffffff;

  /* Semantic */
  --success: var(--ev-700);
  --warning: var(--amber-500);
  --danger:  var(--clay-500);
  --info:    var(--ev-500);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Type scale */
  --text-display: clamp(3rem, 6vw, 5rem);    /* 80px */
  --text-h1:      clamp(2.25rem, 4vw, 3.875rem); /* 62px */
  --text-h2:      clamp(1.75rem, 3vw, 2.375rem); /* 38px */
  --text-h3:      1.5rem;                    /* 24px */
  --text-lead:    1.25rem;                   /* 20px */
  --text-body:    1rem;                      /* 16px */
  --text-small:   0.875rem;                  /* 14px */

  /* Spacing (4px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Corner radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   26px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 3px rgba(26,38,32,0.10);
  --shadow-sm: 0 2px 8px rgba(26,38,32,0.12);
  --shadow-md: 0 4px 16px rgba(26,38,32,0.14);
  --shadow-lg: 0 8px 32px rgba(26,38,32,0.18);
  --shadow-accent: 0 0 0 3px rgba(198,242,78,0.35), 0 4px 20px rgba(20,88,64,0.25);
}

/* ── Lucide icon sizing ───────────────────────────────────── */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm [data-lucide] { width: 16px; height: 16px; }
.icon-md [data-lucide] { width: 20px; height: 20px; }
.icon-lg [data-lucide] { width: 24px; height: 24px; }

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.3;
}
.lead {
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.55;
  color: var(--n-500);
}
.small { font-size: var(--text-small); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ev-500);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow::before {
  content: '—';
  color: var(--lime-600);
}

/* Lime highlight */
.highlight {
  background: var(--lime-600);
  color: var(--ink);
  padding: 0 3px;
  border-radius: 3px;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-9) 0;
}

.section--sm {
  padding: var(--sp-7) 0;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,241,235,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--n-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
}

.nav__logo-text span {
  color: var(--ev-500);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__links a {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--n-500);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--ink); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--ink);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  padding: 12px var(--sp-6);
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ev-700);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--ev-800);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--lime-600);
  color: var(--ink);
}
.btn--accent:hover {
  background: var(--lime-400);
  box-shadow: var(--shadow-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--ev-700);
  border: 1.5px solid var(--ev-700);
}
.btn--ghost:hover {
  background: var(--ev-100);
}

.btn--sm {
  font-size: var(--text-small);
  padding: 8px var(--sp-5);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--paper);
  padding: var(--sp-9) 0;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(198,242,78,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow { margin-bottom: var(--sp-5); }

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}

.hero__lead {
  font-size: var(--text-lead);
  color: var(--n-500);
  line-height: 1.6;
  margin-bottom: var(--sp-7);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__card-stack {
  display: grid;
  gap: var(--sp-4);
  width: 100%;
  max-width: 400px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--n-100);
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-300);
  margin-bottom: var(--sp-2);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ev-700);
}

.stat-card__value .accent { color: var(--lime-600); }

.stat-card--dark {
  background: var(--ev-700);
  border-color: var(--ev-700);
  color: var(--white);
}
.stat-card--dark .stat-card__label { color: var(--ev-300); }
.stat-card--dark .stat-card__value { color: var(--white); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--n-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--n-200);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--ev-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--ev-700);
}

.service-card__eyebrow { margin-bottom: var(--sp-3); }

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.service-card__desc {
  font-size: var(--text-body);
  color: var(--n-500);
  line-height: 1.6;
}

/* ── Why section ──────────────────────────────────────────── */
.why {
  background: var(--ev-950);
  color: var(--white);
}

.why .eyebrow { color: var(--lime-600); }
.why .eyebrow::before { color: var(--lime-600); }
.why h2 { color: var(--white); }
.why .lead { color: var(--ev-300); }

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-top: var(--sp-7);
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.why__point {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.why__point-icon {
  width: 36px;
  height: 36px;
  background: rgba(198,242,78,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime-600);
  margin-top: 2px;
}

.why__point-content h3 {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why__point-content p {
  font-size: var(--text-small);
  color: var(--n-300);
  line-height: 1.55;
}

.why__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.metric-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

.metric-tile__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime-600);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.metric-tile__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ev-300);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--ev-700);
  color: var(--white);
  text-align: center;
  padding: var(--sp-9) 0;
}

.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-banner .lead { color: var(--ev-300); margin-bottom: var(--sp-7); }

/* ── Section headers ──────────────────────────────────────── */
.section-header {
  max-width: 680px;
}

.section-header .eyebrow { margin-bottom: var(--sp-4); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header .lead { margin-bottom: 0; }

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

.section-header--center .eyebrow {
  justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--n-300);
  padding: var(--sp-8) 0 var(--sp-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-6);
}

.footer__brand .nav__logo { color: var(--white); margin-bottom: var(--sp-4); }
.footer__brand p {
  font-size: var(--text-small);
  line-height: 1.6;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--n-200);
  margin-bottom: var(--sp-4);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__col ul a {
  font-size: var(--text-small);
  color: var(--n-300);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-small);
}

.footer__bottom a { color: var(--n-300); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--white); }

/* ── About page ───────────────────────────────────────────── */
.page-hero {
  background: var(--paper);
  padding: var(--sp-8) 0;
}

.page-hero .eyebrow { margin-bottom: var(--sp-4); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  margin-top: var(--sp-7);
}

.about__portrait {
  background: var(--ev-100);
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--ev-500);
  text-align: center;
  padding: var(--sp-6);
}

.about__portrait-placeholder span {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}

.value-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

.value-card__num {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--lime-600);
  background: var(--ev-700);
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  font-weight: 500;
}

.value-card h3 {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.value-card p {
  font-size: var(--text-small);
  color: var(--n-500);
  line-height: 1.55;
}

/* ── Services detail page ─────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--sp-5);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--n-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--ev-300);
}

.service-row__icon {
  width: 56px;
  height: 56px;
  background: var(--ev-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-700);
  flex-shrink: 0;
}

.service-row__body .eyebrow { margin-bottom: var(--sp-2); }
.service-row__body h3 { margin-bottom: var(--sp-3); }
.service-row__body p {
  font-size: var(--text-body);
  color: var(--n-500);
  line-height: 1.6;
  max-width: 600px;
}

.service-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--ev-100);
  color: var(--ev-700);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  margin-top: var(--sp-7);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-field label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--n-200);
  border-radius: var(--r-md);
  padding: 12px var(--sp-4);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ev-500);
  box-shadow: 0 0 0 3px rgba(45,158,114,0.15);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-info__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--ev-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-700);
  flex-shrink: 0;
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-300);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--ink);
}

.contact-info__value a {
  color: var(--ev-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Breadcrumb / page indicators ────────────────────────── */
.page-indicator {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-300);
  margin-bottom: var(--sp-4);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--n-100);
  margin: var(--sp-7) 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta .btn--ghost { display: none; }

  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  .service-row { grid-template-columns: 44px 1fr; }
  .service-row > .btn { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }

  .values-grid { grid-template-columns: 1fr; }
  .why__metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .why__metrics { grid-template-columns: 1fr; }
}

/* ── Mobile nav (open state) ──────────────────────────────── */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--n-100);
  background: rgba(244,241,235,0.98);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--n-100);
}

.nav__mobile a:last-child { border-bottom: none; }

/* ── Cookie consent banner ────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--sp-8));
  max-width: 720px;
  background: var(--ev-900);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
}

.cookie-banner.is-visible { display: flex; }

.cookie-banner__text {
  flex: 1;
  font-size: var(--text-small);
  color: var(--n-200);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--lime-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
}
