/* ============================================================
   KONVYRT — konvyrt.autos
   Homepage stylesheet — LIGHT mint theme
   ============================================================ */

:root {
  --cream: #F5FAF9;
  --surface: #FFFFFF;
  --ink: #16211E;
  --muted: #4A5B55;
  --mint: #2DD4BF;
  --mint-600: #14B8A6;
  --mint-700: #0F766E;
  --mint-900: #0B4F49;
  --pale: #E6FFF9;
  --line: #D8EFEA;
  --shadow: 0 24px 60px -30px rgba(22, 33, 30, 0.25);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #16211E;
  background-color: #F5FAF9;
  overflow-x: hidden;
}

a {
  color: #0F766E;
  text-decoration: none;
}

a:hover {
  color: #0B4F49;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.15;
  color: #16211E;
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------
   TOGGLE SWITCH NAVIGATION
   ------------------------------------------------------------ */
.toggle-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #D8EFEA;
  box-shadow: 0 6px 20px -14px rgba(22, 33, 30, 0.35);
}

.toggle-nav .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.toggle-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.toggle-switch {
  width: 46px;
  height: 25px;
  background-color: #2DD4BF;
  border-radius: 999px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px #E6FFF9;
}

.toggle-switch .toggle-knob {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 19px;
  height: 19px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(22, 33, 30, 0.35);
}

.wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: #16211E;
}

.wordmark span {
  color: #0F766E;
}

.toggle-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.toggle-nav .nav-links a {
  color: #4A5B55;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.toggle-nav .nav-links a:hover {
  color: #0F766E;
}

.nav-cta {
  background-color: #2DD4BF;
  color: #0B4F49;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: #14B8A6;
  color: #06211d;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #16211E;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ------------------------------------------------------------
   METAMORPH SHAPES HERO
   ------------------------------------------------------------ */
.metamorph-hero {
  position: relative;
  padding: 96px 0 104px;
  background-color: #F5FAF9;
  overflow: hidden;
}

.metamorph-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #E6FFF9;
  color: #0F766E;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2DD4BF;
}

.metamorph-hero h1 {
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.metamorph-hero h1 em {
  font-style: normal;
  color: #0F766E;
}

.hero-copy {
  font-size: 1.12rem;
  color: #4A5B55;
  max-width: 540px;
  margin-bottom: 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background-color: #2DD4BF;
  color: #0B4F49;
}

.btn-primary:hover {
  background-color: #14B8A6;
  color: #06211d;
}

.btn-ghost {
  background-color: #FFFFFF;
  color: #16211E;
  border: 1px solid #D8EFEA;
}

.btn-ghost:hover {
  border-color: #2DD4BF;
  color: #0F766E;
}

/* Shape transition stage */
.shape-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 360px;
}

.shape-glow {
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(circle at 50% 50%, #E6FFF9 0%, rgba(230, 255, 249, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.shape-square {
  background-color: #2DD4BF;
  border-radius: 10px;
}

.shape-circle {
  background-color: #14B8A6;
  border-radius: 50%;
}

.shape-triangle {
  background-color: #0F766E;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-star {
  background-color: #2DD4BF;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shape-arc {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  border-top: 2px solid #2DD4BF;
  border-radius: 50% 50% 0 0;
}

.shape-arc.arc-2 {
  border-color: #14B8A6;
}

.shape-arc.arc-3 {
  border-color: #0F766E;
}

/* ------------------------------------------------------------
   STATEMENT ROW
   ------------------------------------------------------------ */
.statement-section {
  background-color: #0B4F49;
  padding: 96px 0;
  color: #FFFFFF;
}

.statement-section .container {
  max-width: 940px;
}

.statement-section h2 {
  color: #FFFFFF;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.statement-section p {
  margin-top: 22px;
  font-size: 1.15rem;
  color: #C9F4EC;
  max-width: 760px;
}

/* ------------------------------------------------------------
   STATS — big numerals
   ------------------------------------------------------------ */
.stats-section {
  padding: 96px 0;
  background-color: #FFFFFF;
}

.stats-section .section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-kicker {
  display: inline-block;
  color: #0F766E;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stats-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
}

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

.stat-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--radius);
  background-color: #F5FAF9;
  border: 1px solid #D8EFEA;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0F766E;
  line-height: 1;
}

.stat-label {
  margin-top: 12px;
  color: #4A5B55;
  font-weight: 600;
}

/* ------------------------------------------------------------
   PROCESS — numbered engagement list
   ------------------------------------------------------------ */
.process-section {
  padding: 96px 0;
  background-color: #F5FAF9;
}

.process-section .section-head {
  margin-bottom: 60px;
}

.process-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
}

.process-list {
  list-style: none;
  counter-reset: step;
  position: relative;
  max-width: 860px;
}

.process-item {
  position: relative;
  padding-left: 96px;
  padding-bottom: 54px;
  counter-increment: step;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-item::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E6FFF9;
  color: #0F766E;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 14px;
  border: 2px solid #2DD4BF;
}

.process-item::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 66px;
  bottom: 4px;
  width: 2px;
  background-color: #2DD4BF;
}

.process-item:last-child::after {
  display: none;
}

.process-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-item p {
  color: #4A5B55;
  max-width: 660px;
}

/* ------------------------------------------------------------
   TABBED CONTENT — service lines
   ------------------------------------------------------------ */
.tabs-section {
  padding: 96px 0;
  background-color: #FFFFFF;
}

.tabs-section .section-head {
  text-align: center;
  margin-bottom: 44px;
}

.tabs-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  border: 1px solid #D8EFEA;
  background-color: #F5FAF9;
  color: #4A5B55;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: #2DD4BF;
  color: #0F766E;
}

.tab-btn.active {
  background-color: #2DD4BF;
  color: #0B4F49;
  border-color: #2DD4BF;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

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

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.tab-panel-inner h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tab-panel-inner p {
  color: #4A5B55;
  margin-bottom: 18px;
}

.tab-panel-inner ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.tab-panel-inner ul li {
  position: relative;
  padding-left: 30px;
  color: #16211E;
  font-weight: 600;
}

.tab-panel-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: #E6FFF9;
  border-radius: 50%;
  border: 2px solid #2DD4BF;
}

/* ------------------------------------------------------------
   TIERS — comparison table
   ------------------------------------------------------------ */
.tiers-section {
  padding: 96px 0;
  background-color: #F5FAF9;
}

.tiers-section .section-head {
  margin-bottom: 50px;
}

.tiers-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
}

.tiers-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border: 1px solid #D8EFEA;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #FFFFFF;
}

.tier-cell {
  padding: 22px 24px;
  border-bottom: 1px solid #D8EFEA;
  color: #4A5B55;
}

.tier-cell:last-child {
  border-bottom: 0;
}

.tier-head {
  background-color: #0B4F49;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 26px 24px;
  border-bottom: 1px solid #0B4F49;
}

.tier-head.featured {
  background-color: #2DD4BF;
  color: #0B4F49;
}

.tier-label {
  font-weight: 700;
  color: #16211E;
}

.tier-cell .tick {
  color: #0F766E;
  font-weight: 800;
}

.tier-cell .dash {
  color: #9FB4AD;
}

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */
.contact-section {
  padding: 96px 0;
  background-color: #FFFFFF;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-section .contact-lede {
  color: #4A5B55;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: #16211E;
}

.contact-details .contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E6FFF9;
  color: #0F766E;
  border-radius: 12px;
  font-weight: 800;
}

.contact-form {
  background-color: #F5FAF9;
  border: 1px solid #D8EFEA;
  border-radius: var(--radius);
  padding: 34px;
}

.contact-form .field {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 7px;
  color: #16211E;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #D8EFEA;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 1rem;
  font-family: inherit;
  color: #16211E;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #2DD4BF;
  border-color: #2DD4BF;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0F766E;
  display: none;
}

.form-status.visible {
  display: block;
}

/* ------------------------------------------------------------
   SPLIT CTA BAND
   ------------------------------------------------------------ */
.split-cta {
  padding: 96px 0;
  background-color: #F5FAF9;
}

.split-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: #0B4F49;
  border-radius: 26px;
  overflow: hidden;
}

.split-cta-left {
  padding: 60px 56px;
  color: #FFFFFF;
}

.split-cta-left h2 {
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.split-cta-left p {
  color: #C9F4EC;
  margin-bottom: 28px;
}

.split-cta-left .btn-primary {
  background-color: #2DD4BF;
  color: #0B4F49;
}

.split-cta-right {
  background-color: #2DD4BF;
  padding: 60px 56px;
  color: #0B4F49;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-cta-right h3 {
  color: #0B4F49;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.split-cta-right p {
  color: #06211d;
  font-weight: 600;
}

.split-cta-right a {
  color: #06211d;
  text-decoration: underline;
  font-weight: 700;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background-color: #16211E;
  color: #D8EFEA;
  border-top: 4px solid #2DD4BF;
  padding: 64px 0 40px;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.site-footer h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.site-footer .footer-about p {
  color: #9FB4AD;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer ul a {
  color: #9FB4AD;
  font-size: 0.95rem;
}

.site-footer ul a:hover {
  color: #2DD4BF;
}

.site-footer .footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-contact li {
  color: #9FB4AD;
  font-size: 0.95rem;
}

.site-footer .footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 239, 234, 0.15);
  color: #9FB4AD;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.site-footer .footer-bottom a {
  color: #9FB4AD;
}

.site-footer .footer-bottom a:hover {
  color: #2DD4BF;
}

/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .metamorph-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metamorph-hero h1 {
    font-size: 2.5rem;
  }

  .shape-stage {
    min-height: 260px;
  }

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

  .tab-panel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tiers-table {
    grid-template-columns: 1fr;
  }

  .contact-section .container,
  .split-cta .container {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .toggle-nav .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8EFEA;
    padding: 18px 24px 24px;
    gap: 18px;
    display: none;
    align-items: flex-start;
  }

  .toggle-nav .nav-links.open {
    display: flex;
  }

  .toggle-nav .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .metamorph-hero {
    padding: 60px 0 72px;
  }

  .metamorph-hero h1 {
    font-size: 2.1rem;
  }

  .statement-section h2,
  .stats-section h2,
  .process-section h2,
  .tabs-section h2,
  .tiers-section h2,
  .contact-section h2 {
    font-size: 1.85rem;
  }

  .shape {
    width: 46px;
    height: 46px;
  }

  .shape-arc {
    width: 30px;
    height: 20px;
  }

  .split-cta-left,
  .split-cta-right {
    padding: 40px 28px;
  }
}
