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

:root {
  --white: #ffffff;
  --deep-yellow: #d6a200;
  --electric-yellow: #f4c400;
  --dark-golden: #a37c00;
  --soft-gray: #e6eaf0;
  --warm-yellow-bg: #fff9e8;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-gray);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 16px 60px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--deep-yellow);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

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

@media (max-width: 968px) {
  .nav,
  .header-cta {
    display: none;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: var(--warm-yellow-bg);
}

.hamburger:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 2px;
}

@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }
}

.hamburger-line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .line-2 {
  opacity: 0;
}

.hamburger.active .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 40px;
}

.mobile-nav-link {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 600;
  padding: 16px;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--deep-yellow);
}

.mobile-nav-link:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.mobile-cta {
  font-size: 18px;
  padding: 16px 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:focus {
  outline: 2px solid var(--deep-yellow);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--electric-yellow);
  color: var(--text-dark);
  padding: 12px 28px;
}

.btn-primary:hover {
  background: var(--deep-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 162, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--deep-yellow);
  padding: 12px 28px;
}

.btn-outline:hover {
  background: var(--warm-yellow-bg);
  border-color: var(--electric-yellow);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--soft-gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft-gray) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 60px 60px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--deep-yellow);
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-visual {
  position: relative;
  height: 400px;
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid var(--electric-yellow);
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  border-color: var(--deep-yellow);
  transform: translate(-30%, -70%) rotate(-10deg);
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(15deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(15deg) translateY(-20px);
  }
}

.features {
  padding: 120px 0;
  background: var(--warm-yellow-bg);
  position: relative;
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(214, 162, 0, 0.12);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--electric-yellow);
  border-radius: 0 0 4px 4px;
}

.feature-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-yellow), transparent);
  margin-top: 80px;
  opacity: 0.6;
}

.about {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 700px;
}

.about-stats {
  display: flex;
  gap: 60px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--soft-gray);
}

@media (max-width: 600px) {
  .about-stats {
    flex-direction: column;
    gap: 32px;
  }
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-yellow);
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
}

.testimonials {
  padding: 120px 0;
  background: var(--white);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
}

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

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  padding: 40px;
  border-left: 3px solid var(--electric-yellow);
  background: var(--warm-yellow-bg);
  border-radius: 0 12px 12px 0;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial span {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing {
  padding: 120px 0;
  background: var(--warm-yellow-bg);
}

@media (max-width: 768px) {
  .pricing {
    padding: 80px 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 16px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--deep-yellow);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--electric-yellow);
  position: relative;
}

.pricing-card-featured::before {
  content: "Popularny";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--electric-yellow);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 32px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
}

.period {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-gray);
  color: var(--text-muted);
  font-size: 15px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
}

.contact {
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}

.contact-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-content p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--soft-gray);
}

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

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-content p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: var(--deep-yellow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--dark-golden);
}

.footer-nav a:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--soft-gray);
  padding: 20px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-content p {
  color: var(--text-muted);
  font-size: 14px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

.legal-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
}

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

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

.legal-content ul {
  color: var(--text-muted);
  margin-left: 24px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--deep-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--dark-golden);
}

.legal-content a:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
