/* ==========================================================================
   ANDAR DA MÚSICA — DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Cores */
  --black: #080A0B;
  --black-2: #111416;
  --black-3: #171A1C;

  --gold: #F5B52E;
  --amber: #D99012;
  --champagne: #FFD66B;

  --cream: #F8F3E8;
  --cream-2: #EFE7D8;
  --white: #FFFFFF;

  --text-dark: #171717;
  --text-gray: #6B6B6B;
  --text-light: #FFFFFF;
  --text-muted-dark: #A7A7A7;

  --green: #35A866;
  --red: #D9534F;

  --border-light: #E6DFD2;
  --border-dark: rgba(255, 255, 255, 0.10);

  /* Tipografia */
  --font-main: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Layout */
  --container: 1280px;
  --container-xl: 1320px;
  --gap: 24px;

  /* Raios */
  --radius-card: 12px;
  --radius-card-lg: 20px;
  --radius-btn: 26px;

  /* Sombras */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.10);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--black-2);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--black-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 20px;
  border: 3px solid var(--black-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--champagne);
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */

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

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.label--center {
  justify-content: center;
}

.script {
  font-family: var(--font-script);
  font-weight: 700;
  line-height: 1;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin-top: 16px;
}

.section-head p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cabeçalhos */

h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: scale(1.02);
}

.btn--gold {
  background: var(--gold);
  color: #111111;
}

.btn--gold:hover {
  background: var(--champagne);
  box-shadow: var(--shadow-strong);
}

.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(23, 23, 23, 0.6);
}

.btn--outline-light:hover {
  background: rgba(23, 23, 23, 0.06);
}

.btn--sm {
  height: 46px;
  padding: 0 22px;
}

/* ==========================================================================
   PLACEHOLDERS DE IMAGEM
   Fundo em gradiente quente (preto -> âmbar) simulando a linguagem
   fotográfica descrita no briefing até que fotos reais entrem no lugar.
   ========================================================================== */

.ph-photo {
  position: relative;
  background:
    radial-gradient(120% 140% at 78% 12%, rgba(245, 181, 46, 0.35), transparent 55%),
    radial-gradient(140% 160% at 15% 100%, rgba(217, 144, 18, 0.25), transparent 60%),
    linear-gradient(160deg, #24201a 0%, #171a1c 45%, #0b0c0d 100%);
  overflow: hidden;
}

.ph-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: overlay;
}

.ph-photo .ph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-photo .ph-icon svg {
  width: 34%;
  height: 34%;
  stroke: rgba(245, 181, 46, 0.45);
  fill: none;
  stroke-width: 1.2;
}

/* Foto real (substitui o placeholder quando o arquivo existe) */
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms var(--ease);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 70px;
  width: auto;
}

.logo__img--footer {
  height: 84px;
}

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

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 180ms var(--ease);
}

.nav a:hover {
  color: var(--gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--black-2);
  border-top: 1px solid var(--border-dark);
  padding: 20px 24px 28px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

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

.mobile-nav a {
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid var(--border-dark);
}

.mobile-nav .btn {
  margin-top: 16px;
  border-bottom: none;
  padding: 0 26px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 660px;
}

.hero__bg {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 72px);
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8, 10, 11, 0.88) 0%, rgba(8, 10, 11, 0.62) 30%, rgba(8, 10, 11, 0.10) 58%, rgba(8, 10, 11, 0.30) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero__text {
  color: var(--white);
  max-width: 670px;
}

.hero__text h1 {
  margin-top: 18px;
  color: var(--white);
}

.hero__text h1 .script {
  color: var(--gold);
  font-size: 1.28em;
  display: inline-block;
  margin-left: 4px;
}

.hero__text p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  margin: 32px 0;
  max-width: 480px;
}

.hero__benefit {
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.20);
}

.hero__benefit:first-child {
  padding-left: 0;
  border-left: none;
}

.hero__benefit .icon {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  margin-bottom: 10px;
}

.hero__benefit .t {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.hero__benefit .d {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__price {
  position: absolute;
  right: 18%;
  bottom: 48px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  z-index: 3;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(8, 10, 11, 0.65), 0 0 26px rgba(245, 181, 46, 0.3);
}

.hero__price .tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.hero__price .row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 6px;
}

.hero__price .rs {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  padding-bottom: 8px;
}

.hero__price .num {
  font-size: 60px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__price .mo {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* ==========================================================================
   INSTRUMENTOS
   ========================================================================== */

.instruments {
  position: relative;
  background: var(--cream);
  padding: 90px 0;
  overflow: hidden;
}

.instruments__waves {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 140px;
  opacity: 0.22;
  color: var(--gold);
  pointer-events: none;
}

.instruments__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.instruments__grid--row2 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 82%;
  margin: 20px auto 0;
}

.instrument-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 160px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  box-shadow: var(--shadow-soft);
}

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

.instrument-card .ph-photo {
  position: absolute;
  inset: 0;
  transition: transform 250ms var(--ease);
}

.instrument-card:hover .ph-photo,
.instrument-card:hover .bg-photo {
  transform: scale(1.04);
}

.instrument-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.instrument-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(245, 181, 46, 0.12);
  opacity: 0;
  transition: opacity 220ms var(--ease);
  z-index: 2;
}

.instrument-card:hover .instrument-card__hover {
  opacity: 1;
}

.instrument-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(8, 10, 11, 0.6);
  border: 1px solid rgba(245, 181, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.instrument-card__badge .icon {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
}

.instrument-card__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  z-index: 3;
  color: var(--white);
}

.instrument-card__label .name {
  font-size: 16px;
  font-weight: 600;
}

.instrument-card__label .sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ==========================================================================
   MAIS QUE AULAS
   ========================================================================== */

.experience {
  background: var(--black);
  padding: 80px 0;
}

.experience .container {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 48px;
  align-items: stretch;
}

.experience__visual {
  min-height: 280px;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  position: relative;
}

.experience__visual .ph-photo {
  position: absolute;
  inset: 0;
}

.experience__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
}

.experience__text {
  color: var(--white);
}

.experience__text h2 {
  margin-top: 14px;
  color: var(--white);
}

.experience__text h2 .script {
  color: var(--gold);
  font-size: 1.15em;
}

.experience__text p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.benefit-item {
  padding: 18px 20px;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(2),
.benefit-item:nth-child(3) {
  border-top: none;
}

.benefit-item:nth-child(3n+1) {
  border-left: none;
}

.benefit-item .icon {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  margin-bottom: 12px;
}

.benefit-item .t {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.benefit-item .d {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* ==========================================================================
   PREÇO + BANNER
   ========================================================================== */

.pricing {
  background: var(--white);
  padding: 80px 0;
}

.pricing .container {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 24px;
  align-items: stretch;
}

.pricing .container > * {
  min-width: 0;
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.price-card .label {
  margin-bottom: 4px;
}

.price-card .lead {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 14px;
}

.price-card .row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 6px;
}

.price-card .rs {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: 10px;
}

.price-card .num {
  font-size: 68px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.price-card .mo {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-gray);
  padding-bottom: 8px;
}

.price-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.price-list li .icon {
  width: 15px;
  height: 15px;
  stroke: var(--amber);
  stroke-width: 2.4;
}

.price-card .btn {
  margin-top: 28px;
  width: 100%;
}

.banner {
  position: relative;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
}

.banner .ph-photo {
  position: absolute;
  inset: 0;
}

.banner__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  max-width: 420px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.banner__content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.banner__content .btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */

.how {
  background: var(--cream);
  padding: 80px 0;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 16px;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.step__head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

.step__arrow {
  position: absolute;
  left: 173%;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 33px;
  margin-left: 5px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  box-shadow: var(--shadow-soft);
}

.step .icon {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
}

.step h3 {
  font-size: 16px;
}

.step p {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 6px;
  line-height: 1.5;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.cta-final {
  background: var(--black);
  padding: 44px 0;
}

.cta-final .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-final__visual {
  width: 160px;
  height: 96px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.cta-final__visual .ph-photo {
  position: absolute;
  inset: 0;
}

.cta-final__text h2 {
  font-size: 30px;
  color: var(--white);
  font-weight: 700;
}

.cta-final__text h2 .script {
  color: var(--gold);
  font-size: 1.2em;
}

.cta-final__text p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 0;
  color: var(--text-muted-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer__about {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  max-width: 220px;
  color: var(--text-muted-dark);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.footer__social a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(245, 181, 46, 0.1);
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a.link,
.footer li.text {
  font-size: 13px;
  color: var(--text-muted-dark);
  transition: color 180ms var(--ease);
}

.footer a.link:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted-dark);
}

.footer__contact-item .icon {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  margin-top: 1px;
}

.footer__cols-split {
  display: flex;
  gap: 24px;
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom .wave {
  color: var(--gold);
  opacity: 0.5;
  width: 90px;
  height: 20px;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1100px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__bg,
  .hero__overlay {
    bottom: 280px;
  }

  .hero__price {
    position: static;
    margin: 28px auto 20px;
  }

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

  .experience__visual {
    height: 220px;
  }

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

  .banner {
    min-height: 340px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {

  .nav,
  .header__actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .instruments__grid,
  .instruments__grid--row2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .instruments__grid:not(.instruments__grid--row2) .instrument-card:last-child {
    grid-column: 1 / -1;
  }

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

  .benefit-item:nth-child(3n+1) {
    border-left: 1px solid var(--border-dark);
  }

  .benefit-item:nth-child(2n+1) {
    border-left: none;
  }

  .benefit-item:nth-child(2) {
    border-top: none;
  }

  .how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .step__arrow {
    display: none;
  }

  .cta-final .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-final__visual {
    margin: 0 auto;
  }

  .footer__cols-split {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 84px;
    padding-bottom: 40px;
  }

  .hero__bg,
  .hero__overlay {
    bottom: 200px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(8, 10, 11, 0.55) 0%, rgba(8, 10, 11, 0.8) 55%, rgba(8, 10, 11, 0.94) 100%),
      rgba(8, 10, 11, 0.25);
  }

  .hero__price {
    position: static;
    margin: 28px auto 16px;
    width: 132px;
    height: 132px;
  }

  .hero__price .num {
    font-size: 42px;
  }

  .hero__price .rs,
  .hero__price .mo {
    font-size: 15px;
  }

  .hero__benefits {
    grid-template-columns: repeat(2, auto);
    row-gap: 20px;
  }

  .hero__benefit:nth-child(3) {
    border-left: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .instruments {
    padding: 64px 0;
  }

  .instruments__grid,
  .instruments__grid--row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .instrument-card {
    height: 165px;
  }

  .experience {
    padding: 64px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    text-align: center;
  }

  .benefit-item,
  .benefit-item:nth-child(3n+1) {
    border-left: none;
  }

  .benefit-item:not(:first-child) {
    border-top: 1px solid var(--border-dark);
  }

  .pricing {
    padding: 64px 0;
  }

  .price-card {
    padding: 26px;
  }

  .banner__content {
    padding: 32px 26px;
  }

  .banner__content .btns {
    flex-direction: column;
    align-items: stretch;
  }

  .how {
    padding: 64px 0;
  }

  .how__steps {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    padding: 0;
    text-align: left;
  }

  .step__head {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

  .step .icon {
    display: none;
  }

  .cta-final__text h2 {
    font-size: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer .logo {
    justify-content: center;
  }

  .footer__about {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__cols-split {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .price-card {
    padding: 22px;
  }

  .price-card .num {
    font-size: 52px;
  }

  .price-card .rs,
  .price-card .mo {
    font-size: 18px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }
}