/* ==========================================================================
   Easy Song — Homepage Stylesheet
   LIGHT theme · mint #2DD4BF accent on cool mist-white #F4F9F8
   ========================================================================== */

:root {
  --ink: #12201D;
  --ink-2: #243530;
  --muted: #53655F;
  --muted-2: #6B7C76;
  --accent: #2DD4BF;
  --accent-deep: #0D9488;
  --accent-dark: #0B3B35;
  --accent-soft: #A7F3D0;
  --accent-pale: #ECFDF5;
  --mist: #F4F9F8;
  --white: #FFFFFF;
  --line: #DCE8E3;
  --line-strong: #C8D9D2;
  --shadow-sm: 0 2px 10px rgba(18, 32, 29, 0.06);
  --shadow-md: 0 12px 34px rgba(18, 32, 29, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 32, 29, 0.16);
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: #F4F9F8;
  color: #12201D;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #0D9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0B3B35;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0D9488;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  color: #12201D;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #243530;
}

/* --------------------------------------------------------------------------
   AUDIO-EQUALIZER NAVIGATION
   -------------------------------------------------------------------------- */
.eq-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2ECE8;
  box-shadow: var(--shadow-sm);
}

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

.eq-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.eq-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #12201D;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.eq-brand:hover {
  color: #0D9488;
}

.brand-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #2DD4BF;
  color: #0B3B35;
  font-size: 0.85rem;
  line-height: 1;
}

.eq-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.eq-links a {
  color: #243530;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.eq-links a:hover {
  color: #0D9488;
  border-bottom-color: #2DD4BF;
}

.eq-cta {
  display: inline-block;
  background-color: #0D9488;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.eq-cta:hover {
  background-color: #0B3B35;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Equalizer bars along the bottom edge */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.eq-bars span {
  display: block;
  width: 5px;
  background-color: #2DD4BF;
  border-radius: 2px 2px 0 0;
  animation: eqPulse 1.6s ease-in-out infinite;
}

.eq-bars span:nth-child(1) { height: 38%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 68%; background-color: #0D9488; animation-delay: 0.2s; }
.eq-bars span:nth-child(3) { height: 52%; animation-delay: 0.4s; }
.eq-bars span:nth-child(4) { height: 90%; background-color: #A7F3D0; animation-delay: 0.1s; }
.eq-bars span:nth-child(5) { height: 100%; animation-delay: 0.5s; }
.eq-bars span:nth-child(6) { height: 60%; background-color: #0D9488; animation-delay: 0.3s; }
.eq-bars span:nth-child(7) { height: 78%; animation-delay: 0.7s; }
.eq-bars span:nth-child(8) { height: 46%; background-color: #A7F3D0; animation-delay: 0.15s; }
.eq-bars span:nth-child(9) { height: 72%; animation-delay: 0.35s; }

@keyframes eqPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); transform-origin: bottom; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

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

/* --------------------------------------------------------------------------
   VINYL-RECORD HERO
   -------------------------------------------------------------------------- */
.vinyl-hero {
  background: linear-gradient(180deg, #ECFDF5 0%, #F4F9F8 100%);
  padding: 72px 0 64px;
  position: relative;
}

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

.hero-copy h1 {
  font-size: 3.1rem;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.12rem;
  color: #243530;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #0D9488;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #0B3B35;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: #0D9488;
  border-color: #0D9488;
}

.btn-ghost:hover {
  background-color: #0D9488;
  color: #FFFFFF;
}

.btn-light {
  background-color: #FFFFFF;
  color: #0B3B35;
}

.btn-light:hover {
  background-color: #2DD4BF;
  color: #0B3B35;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: #53655F;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2DD4BF;
}

/* Vinyl record visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.disc-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
}

.vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #0B0B0B;
  background-image: repeating-radial-gradient(
    circle at 50% 50%,
    #191919 0px, #191919 2px, #0C0C0C 2px, #0C0C0C 4px
  );
  box-shadow: var(--shadow-lg), inset 0 0 0 8px #050505;
  transform: rotate(8deg);
}

.vinyl-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, #3A3A3A 0%, #1A1A1A 34%, transparent 58%);
  pointer-events: none;
}

.disc-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background-color: #2DD4BF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  box-shadow: inset 0 0 0 5px #0D9488, 0 0 0 1px #0B3B35;
}

.label-company {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0B3B35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label-rpm {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0B3B35;
  letter-spacing: 0.12em;
}

.spindle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0B3B35;
  box-shadow: inset 0 0 0 2px #12201D;
}

/* --------------------------------------------------------------------------
   FULL-WIDTH STATEMENT ROW
   -------------------------------------------------------------------------- */
.statement-section {
  background-color: #FFFFFF;
  padding: 84px 0;
  text-align: center;
  border-bottom: 1px solid #E9F1EE;
}

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

.statement-section h2 {
  font-size: 2.6rem;
  margin-bottom: 22px;
}

.statement-body {
  font-size: 1.12rem;
  color: #243530;
}

/* --------------------------------------------------------------------------
   CAPABILITIES (SERVICES)
   -------------------------------------------------------------------------- */
.services-section {
  background-color: #F4F9F8;
  padding: 84px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-intro {
  color: #53655F;
  font-size: 1.02rem;
}

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

.service-item {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE8;
  border-radius: 14px;
  padding: 30px 30px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #A7F3D0;
}

.service-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0D9488;
  letter-spacing: 0.1em;
  background-color: #ECFDF5;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.service-item h3 {
  margin-bottom: 10px;
}

.service-item p {
  color: #53655F;
}

/* --------------------------------------------------------------------------
   BIG-NUMERAL STAT COLUMNS
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: #0B3B35;
  padding: 84px 0;
}

.stats-section .eyebrow {
  color: #2DD4BF;
}

.stats-section h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

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

.stat-col {
  text-align: center;
  padding: 28px 12px;
  border-radius: 14px;
  background-color: #0F453E;
}

.stat-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  color: #2DD4BF;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  color: #D8F0E9;
  font-size: 0.95rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   NUMBERED DELIVERY PROCESS
   -------------------------------------------------------------------------- */
.process-section {
  background-color: #FFFFFF;
  padding: 84px 0;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 0 22px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2DD4BF 0%, #A7F3D0 100%);
  z-index: 0;
}

.process-step:not(:first-child) {
  padding-left: 34px;
}

.step-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #0D9488;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px #ECFDF5;
}

.step-body h3 {
  margin-bottom: 8px;
}

.step-body p {
  color: #53655F;
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about-section {
  background-color: #ECFDF5;
  padding: 84px 0;
  border-top: 1px solid #DCF2E9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.about-copy p {
  color: #243530;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-copy .btn {
  margin-top: 8px;
}

.about-aside {
  position: sticky;
  top: 96px;
}

.about-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE8;
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  margin-bottom: 18px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-list li {
  color: #53655F;
  font-size: 0.96rem;
}

.value-list strong {
  color: #0D9488;
}

/* --------------------------------------------------------------------------
   TWO-COLUMN COMPARISON TABLE
   -------------------------------------------------------------------------- */
.comparison-section {
  background-color: #F4F9F8;
  padding: 84px 0;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-section .eyebrow {
  display: block;
  text-align: center;
}

.compare-table {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #DCE8E3;
  border-radius: 14px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row:not(:last-child) {
  border-bottom: 1px solid #E9F1EE;
}

.compare-cell {
  padding: 20px 26px;
  color: #53655F;
  font-size: 0.98rem;
}

.compare-cell.highlight {
  background-color: #ECFDF5;
  color: #0B3B35;
  font-weight: 600;
}

.compare-heading {
  font-weight: 800;
  font-size: 1.02rem;
  color: #243530;
  background-color: #F4F9F8;
}

.compare-heading.highlight {
  background-color: #D7F5EC;
  color: #0B3B35;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   TESTIMONIAL SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: #FFFFFF;
  padding: 84px 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-section .eyebrow {
  display: block;
  text-align: center;
}

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

.slider-viewport {
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  flex: 0 0 100%;
  padding: 8px 20px;
  text-align: center;
}

.slide blockquote {
  font-size: 1.35rem;
  font-weight: 600;
  color: #12201D;
  line-height: 1.45;
  margin-bottom: 22px;
}

.slide figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slide figcaption strong {
  color: #0D9488;
  font-size: 0.95rem;
}

.slide figcaption span {
  color: #6B7C76;
  font-size: 0.85rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #0D9488;
  background-color: #FFFFFF;
  color: #0D9488;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
  background-color: #0D9488;
  color: #FFFFFF;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #C8D9D2;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-dots button.active {
  background-color: #0D9488;
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: #F4F9F8;
  padding: 84px 0;
  border-top: 1px solid #E9F1EE;
}

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

.contact-info p {
  color: #53655F;
  margin-bottom: 26px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7C76;
}

.contact-details a {
  font-weight: 600;
  font-size: 1.05rem;
  color: #12201D;
}

.contact-details a:hover {
  color: #0D9488;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE8;
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #243530;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DCE8E3;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  color: #12201D;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #0D9488;
  box-shadow: 0 0 0 3px #ECFDF5;
}

.field textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.4em;
  margin-bottom: 8px;
}

.form-status.success {
  color: #0D9488;
}

.form-status.error {
  color: #B91C1C;
}

/* --------------------------------------------------------------------------
   SPLIT CTA BAND
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(120deg, #0D9488 0%, #2DD4BF 100%);
  padding: 64px 0;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-copy p {
  color: #ECFDF5;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #FFFFFF;
  border-top: 4px solid #2DD4BF;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: #53655F;
  margin-top: 14px;
  max-width: 280px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7C76;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #243530;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: #0D9488;
}

.footer-bottom {
  border-top: 1px solid #E9F1EE;
  padding-top: 22px;
  padding-bottom: 26px;
}

.footer-bottom p {
  color: #6B7C76;
  font-size: 0.85rem;
}

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

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

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  h2 { font-size: 1.9rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { font-size: 2.4rem; }
  .disc-wrap { max-width: 320px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-step:not(:last-child)::after { display: none; }
  .process-step:not(:first-child) { padding-left: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .eq-nav-inner { flex-wrap: wrap; gap: 12px; }
  .nav-toggle { display: flex; }
  .eq-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    margin-left: 0;
    order: 10;
  }
  .eq-links.open { display: flex; }
  .eq-links a { padding: 10px 4px; border-bottom: 1px solid #E9F1EE; }
  .eq-cta { display: none; }
  .eq-bars { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compare-cell { padding: 16px 18px; font-size: 0.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-grid { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
