:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-dark: #0f172a;
  --color-dark-light: #1e293b;
  --color-gray: #64748b;
  --color-gray-light: #94a3b8;
  --color-white: #ffffff;
  --color-bg: #f8fafc;
  --color-text: #1e293b;
  --color-text-light: #64748b;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.main-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.logo__image {
  height: 50px;
  width: 50px;
  display: block;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 0.5rem;
  position: relative;
  width: 25px;
  height: 20px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
  transform-origin: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}


/* Buttons */
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Hero Section */
.hero {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  font-weight: 500;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 400px;
  background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Operators Section */
.operators-section {
  padding: var(--spacing-2xl) 0;
  background: var(--color-white);
}

.plates-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.plate-main {
  width: 100%;
}

.plates-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.plate {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.plate-main {
  flex-direction: row;
}

.plate-secondary {
  flex-direction: column;
}

.plate:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plate__logo {
  text-align: center;
  flex-shrink: 0;
}

.plate-main .plate__logo {
  min-width: 180px;
}

.plate-secondary .plate__logo {
  width: 100%;
}

.plate__logo-link {
  display: inline-block;
  text-decoration: none;
}

.plate__logo-image {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f1f5f9;
}

.plate-secondary .plate__logo-image {
  width: 100px;
  height: 100px;
}

.plate__logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plate__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 0;
  text-align: center;
}

.plate__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
  padding: var(--spacing-xs) 0;
}

.plate-main .plate__content {
  justify-content: space-around;
}

.plate-secondary .plate__content {
  flex-direction: column;
  align-items: center;
}

.plate__description {
  flex: 1;
  max-width: 400px;
}

.plate__description p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.plate__text {
  text-align: center;
}

.plate__text p:first-child {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.plate__amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.plate__disclaimer {
  text-align: center;
  max-width: 300px;
}

.plate__disclaimer-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0;
}

.plate__rating {
  text-align: center;
}

.plate__rating p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.plate__vote {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.plate__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.star {
  color: var(--color-gray-light);
  font-size: 1.25rem;
}

.star-full {
  color: var(--color-accent);
}

.star-half {
  background: linear-gradient(90deg, var(--color-accent) 50%, var(--color-gray-light) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.star-empty {
  color: var(--color-gray-light);
}

.plate__payments {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.plate__payments img {
  width: 50px;
  height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  padding: 0.25rem;
}

.plate__btns {
  flex-shrink: 0;
}

.plate-main .plate__btns {
  min-width: 180px;
}

.plate-secondary .plate__btns {
  width: 100%;
}

.plate__btns .btn {
  width: 100%;
  text-align: center;
}

/* Features Section */
.features-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
  color: var(--color-white);
  stroke: var(--color-white);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* About Section */
.about-section {
  padding: var(--spacing-2xl) 0;
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.about-content-reverse {
  grid-template-columns: 1fr 1fr;
}

.about-content-reverse .about-text {
  order: 1;
}

.about-content-reverse .about-image {
  order: 0;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.about-text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 300px;
  background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* Why Section */
.why-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.why-text {
  padding: var(--spacing-lg);
}

.why-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.why-text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content Section */
.content-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.content-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--spacing-sm);
}

.content-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content-wrapper p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.content-list {
  list-style: none;
  padding-left: 0;
  margin: var(--spacing-md) 0;
}

.content-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

.content-list-ordered {
  list-style: decimal;
  padding-left: var(--spacing-lg);
}

.content-list-ordered li {
  padding-left: var(--spacing-sm);
}

.content-list-ordered li::before {
  display: none;
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-lg) 0;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.content-table th {
  padding: var(--spacing-md);
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: var(--transition);
}

.content-table tbody tr:hover {
  background: #f8fafc;
}

.content-table tbody tr:last-child {
  border-bottom: none;
}

.content-table td {
  padding: var(--spacing-md);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.content-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.content-table tbody tr:nth-child(even):hover {
  background: #f1f5f9;
}

.info-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-box h4 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}

.info-box p {
  margin-bottom: 0;
  color: var(--color-text);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq__holder {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-item__btn {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  transition: var(--transition);
}

.faq-item__btn:hover {
  background: #f8fafc;
}

.faq-item__question {
  color: var(--color-dark);
  font-size: 1.125rem;
  font-weight: 600;
  flex: 1;
  text-align: left;
}

.faq-item__icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-item__content {
  max-height: 500px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-item__content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.star {
  color: #fbbf24;
  font-size: 1.125rem;
}

.star.star-empty {
  color: #d1d5db;
}

.star.star-half {
  color: #fbbf24;
  opacity: 0.5;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-2xl) 0;
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-top: 2.5rem;
  flex: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 0;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-dark);
  text-align: right;
  margin-top: auto;
  padding-top: var(--spacing-sm);
}

/* Responsible Section */
.responsible-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.responsible-box {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-accent);
}

.responsible-box h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.responsible-box p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.responsible-highlight {
  background: #fef3c7;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  text-align: center;
  font-weight: 500;
}

.responsible-highlight strong {
  color: var(--color-dark);
}

/* Footer */
.main-footer {
  background: var(--color-dark);
  color: var(--color-gray-light);
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.footer-links a {
  color: var(--color-gray-light);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-care {
  display: flex;
  justify-content: center;
}

.care__holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.care__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.care__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.care__item img {
  max-width: 180px;
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .care__item img {
    max-width: 120px;
    height: 60px;
  }
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-gray);
}

.footer-copyright p {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content,
  .about-content,
  .why-content {
    grid-template-columns: 1fr;
  }

  .about-content-reverse {
    grid-template-columns: 1fr;
  }

  .about-content-reverse .about-text {
    order: 0;
  }

  .about-content-reverse .about-image {
    order: 1;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .menu-icon {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .main-nav ul {
    flex-direction: column;
    padding: var(--spacing-md);
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: var(--spacing-md);
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle:checked ~ .main-nav {
    max-height: 500px;
  }

  .menu-icon span:nth-child(1) {
    top: 0;
  }

  .menu-icon span:nth-child(2) {
    top: 8.5px;
  }

  .menu-icon span:nth-child(3) {
    top: 17px;
  }

  .header-content.menu-open .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8.5px;
  }

  .header-content.menu-open .menu-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .header-content.menu-open .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8.5px;
  }

  .plates-secondary {
    grid-template-columns: 1fr;
  }

  .plate-main,
  .plate-secondary {
    flex-direction: column;
  }

  .plate__content {
    flex-direction: column;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    margin-top: var(--spacing-sm);
  }

  .header-actions .btn {
    flex: 1;
  }

  .hero {
    padding: var(--spacing-xl) 0;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .plates-secondary {
    grid-template-columns: 1fr;
  }
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.active.age-overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden;
}

body.modal-age-open {
  overflow: hidden;
}

body.modal-age-open .main-header,
body.modal-age-open main,
body.modal-age-open footer {
  filter: blur(5px);
  pointer-events: none;
}

.js-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.modal-cookies {
  top: auto;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  left: auto;
  transform: translate(0, 0) scale(0.9);
  max-width: 400px;
  width: auto;
}

.modal-cookies.active {
  transform: translate(0, 0) scale(1);
}

.modal-wrapper {
  padding: var(--spacing-xl);
}

.modal-header {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.modal-body {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.modal-body p {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.modal-footer {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.modal-footer .btn {
  min-width: 120px;
  padding: var(--spacing-sm) var(--spacing-lg);
}

.modal-privacy {
  text-align: center;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .modal {
    width: 95%;
    max-height: 85vh;
  }

  .modal-cookies {
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    left: var(--spacing-md);
    width: calc(100% - var(--spacing-md) * 2);
    max-width: none;
  }

  .modal-wrapper {
    padding: var(--spacing-lg);
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

