/* ================================
   PUNCHRA — styles.css
   ================================ */

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

:root {
  --red: #D62828;
  --red-dark: #A31515;
  --red-light: #F25C54;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark-2: #242424;
  --dark-3: #2E2E2E;
  --gray: #6B6B6B;
  --gray-light: #ADADAD;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --cream: #FAF8F5;

  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  --max-w: 1120px;
  --section-py: 96px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ================================
   UTILITY
   ================================ */

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

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

.section--light {
  background-color: var(--cream);
  color: var(--black);
}

.section--dark {
  background-color: var(--dark);
}

.section--darker {
  background-color: var(--dark-2);
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-light);
  max-width: 620px;
  line-height: 1.7;
}

.section-lead--dark {
  color: var(--gray);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background-color: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--red-dark);
  box-shadow: 0 8px 32px rgba(214,40,40,0.35);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--dark {
  background-color: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background-color: var(--dark-3);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
}

.logo span {
  color: var(--red);
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 14px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.mobile-nav__link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition);
}

.mobile-nav__link:hover {
  color: var(--white);
}

.mobile-nav__cta {
  margin: 16px 24px 20px;
  text-align: center;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.4) 0%,
    rgba(13,13,13,0.3) 30%,
    rgba(13,13,13,0.7) 65%,
    rgba(13,13,13,0.96) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,40,40,0.15);
  border: 1px solid rgba(214,40,40,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
}

.hero__text {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

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

.hero__note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}

/* ================================
   WHY
   ================================ */

.why {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.why__header {
  margin-bottom: 60px;
}

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

.why__card {
  background: var(--dark-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.why__card:hover::before {
  height: 100%;
}

.why__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
}

.why__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.why__card-text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ================================
   FORMAT
   ================================ */

.format {
  padding: var(--section-py) 0;
}

.format__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.format__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.format__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
}

.format__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.format__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.format__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214,40,40,0.1);
  border: 1px solid rgba(214,40,40,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.format__item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.format__item-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ================================
   FOR WHOM
   ================================ */

.forwhom {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.forwhom__header {
  text-align: center;
  margin-bottom: 56px;
}

.forwhom__header .section-lead {
  margin: 0 auto;
}

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

.forwhom__card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition);
}

.forwhom__card:hover {
  border-color: rgba(214,40,40,0.3);
}

.forwhom__emoji {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.forwhom__card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.forwhom__card-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ================================
   HOW IT WORKS
   ================================ */

.how {
  padding: var(--section-py) 0;
}

.how__header {
  text-align: center;
  margin-bottom: 64px;
}

.how__header .section-lead {
  margin: 0 auto;
}

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

.how__step {
  background: var(--dark-2);
  padding: 40px 28px;
  text-align: center;
  position: relative;
}

.how__step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.how__step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how__step-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ================================
   PUNCH QUOTE / BANNER
   ================================ */

.quote-banner {
  background: var(--red);
  padding: 56px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.quote-banner__text {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.quote-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* ================================
   FAQ
   ================================ */

.faq {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq__sidebar {
  position: sticky;
  top: 100px;
}

.faq__sidebar-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.faq__sidebar-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

.faq__item {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq__question:hover {
  background: var(--dark-3);
}

.faq__question.open {
  color: var(--red-light);
}

.faq__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq__question.open .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq__answer.open {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ================================
   LEAD FORM
   ================================ */

.lead {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.lead::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,40,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lead__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lead__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lead__form-wrap .section-lead {
  margin-bottom: 36px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

.form__input {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form__input::placeholder {
  color: var(--gray);
}

.form__input:focus {
  border-color: var(--red);
}

.form__input.error {
  border-color: var(--red-light);
}

.form__error {
  font-size: 12px;
  color: var(--red-light);
  display: none;
}

.form__error.visible {
  display: block;
}

.form__select {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-sans);
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color var(--transition);
}

.form__select:focus {
  border-color: var(--red);
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form__consent-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.form__consent-text a {
  color: var(--gray-light);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.form__consent-text a:hover {
  text-decoration-color: var(--gray-light);
}

.form__submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  border-radius: var(--radius);
}

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

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  flex-wrap: wrap;
}

.footer__legal-info {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.footer__copy {
  font-size: 13px;
  color: var(--gray);
  text-align: right;
}

/* ================================
   COOKIE BANNER
   ================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--red-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn--decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 780px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-page .legal-date {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--white);
}

.legal-page p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-page ul li {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--red-light);
  text-decoration: underline;
}

/* ================================
   SUCCESS PAGE
   ================================ */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-card {
  max-width: 520px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(214,40,40,0.12);
  border: 2px solid rgba(214,40,40,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}

.success-card h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.success-card p {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ================================
   ANIMATIONS
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 960px) {
  :root {
    --section-py: 72px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .format__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .format__img-wrap img {
    height: 320px;
  }

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

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

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__sidebar {
    position: static;
  }

  .lead__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead__img {
    display: none;
  }

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

@media (max-width: 600px) {
  :root {
    --section-py: 56px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__copy {
    text-align: left;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
