@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --color-primary: #BDB76B;
  --color-accent: #FAD201;
  --color-orange: #FF7518;
  --color-dark: #2C2C2C;
  --color-text: #3A3A3A;
  --color-text-light: #666666;
  --color-bg: #FEFDF8;
  --color-bg-alt: #F7F5EE;
  --color-white: #FFFFFF;
  --color-border: #E8E4D8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --section-padding: 80px 0;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.3;
}

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

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background-color: #e56510;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 117, 24, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.btn-outline:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(254, 253, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-dark);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

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

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

.nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO / BANNER */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.75) 0%, rgba(44, 44, 44, 0.4) 50%, rgba(189, 183, 107, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-accent);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0.92;
  line-height: 1.6;
}

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

/* CONTENT BLOCKS */
.content-section {
  padding: var(--section-padding);
}

.content-section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-block.reversed {
  direction: rtl;
}

.content-block.reversed > * {
  direction: ltr;
}

.content-block-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.content-block-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-block-image:hover img {
  transform: scale(1.03);
}

.content-block-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.content-block-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
  margin-top: 12px;
  border-radius: 2px;
}

.content-block-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 16px;
}

.content-block-text ul {
  margin: 16px 0;
}

.content-block-text ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--color-text-light);
}

.content-block-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* ACCORDION SECTION */
.accordion-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.accordion-header:hover {
  color: var(--color-orange);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.accordion-item.active .accordion-icon {
  background-color: var(--color-orange);
}

.accordion-item.active .accordion-icon svg {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-icon svg path {
  stroke: var(--color-white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.accordion-content-inner p {
  margin-bottom: 10px;
}

/* TABLE SECTION */
.table-section {
  padding: var(--section-padding);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
}

.info-table thead {
  background: linear-gradient(135deg, var(--color-primary), #a8a35e);
}

.info-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-white);
  letter-spacing: 0.3px;
}

.info-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background-color: rgba(189, 183, 107, 0.06);
}

.info-table tbody tr:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.info-table tbody tr:nth-child(even):hover {
  background-color: rgba(189, 183, 107, 0.1);
}

/* PRICING CARDS */
.pricing-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.pricing-card.featured {
  border-color: var(--color-orange);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 117, 24, 0.15);
}

.pricing-card.featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-orange);
  margin-bottom: 4px;
}

.pricing-card .price-period {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--color-text-light);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* TEXT-ONLY SECTION */
.text-section {
  padding: var(--section-padding);
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.text-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
  margin: 12px auto 0;
  border-radius: 2px;
}

.text-content p {
  margin-bottom: 18px;
  color: var(--color-text-light);
  font-size: 17px;
  text-align: center;
}

.text-content .highlight-box {
  background: linear-gradient(135deg, rgba(189, 183, 107, 0.1), rgba(250, 210, 1, 0.1));
  border-left: 4px solid var(--color-orange);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}

.text-content .highlight-box p {
  text-align: left;
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 500;
}

/* REVIEWS */
.reviews-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

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

.review-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}

.review-text {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-author-info p {
  font-size: 13px;
  color: var(--color-text-light);
}

/* FORM SECTION */
.form-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--color-dark) 0%, #3a3a3a 100%);
  position: relative;
}

.form-section .section-title {
  color: var(--color-white);
}

.form-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.form-section .section-divider {
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
}

.subscription-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
  border-color: var(--color-orange);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 117, 24, 0.15);
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.form-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-orange);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-white);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--color-primary);
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 13px;
  white-space: nowrap;
}

.cookie-settings {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cookie-category-info p {
  font-size: 13px;
  color: var(--color-text-light);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-save-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-page {
  padding-top: 110px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.legal-content .legal-date {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
}

.legal-content ul li {
  padding: 4px 0;
  color: var(--color-text-light);
  list-style: disc;
}

/* THANKS PAGE */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.thanks-content {
  max-width: 520px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-white);
  fill: none;
}

.thanks-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(255, 117, 24, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 117, 24, 0.45);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-block.reversed {
    direction: ltr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .content-block-text h2 {
    font-size: 26px;
  }

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

  .cookie-main {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
    min-width: 130px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .info-table thead th,
  .info-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
