:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e40af;
  --secondary-color: #10b981;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --link: #334155;
  --link-hover: #0f172a;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --accent-orange: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

*,
:before,
:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border-color);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Nunito", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #1e40af, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.125rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

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

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

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

.navigation__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navigation__link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.navigation__link:hover {
  color: var(--primary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background: radial-gradient(circle at top center, #eff6ff, #fff);
  text-align: center;
}

.hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hero-desc {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.buttons-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white !important;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* Sections */
section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
}

section:last-child {
  border-bottom: none;
}

/* Grids */
.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Cards (Vyhody Box) */
.vyhody-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.vyhody-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Pricing Table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-option {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.price-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.price-option.highlight {
  border: 2px solid var(--primary-color);
  background-color: #eff6ff;
  position: relative;
  transform: scale(1.05);
  z-index: 10;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-range {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0;
}

/* Lists */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.styled-list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.25rem;
}

.note-box {
  background-color: #fff7ed;
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.note-box p {
  margin: 0;
  color: #9a3412;
  font-size: 1rem;
}

/* Contact Form */
.form-container {
  max-width: 600px;
  margin: 0 auto 3rem;
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: var(--primary-hover);
}

.success-message,
.error-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.success-message {
  background-color: #dcfce7;
  color: #166534;
}

.error-message {
  background-color: #fee2e2;
  color: #991b1b;
}

.contact-info {
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--bg-light);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.disclaimer {
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.vyhody-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Pricing Table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-option {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.price-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.price-option.highlight {
  border: 2px solid var(--primary-color);
  background-color: #eff6ff;
  position: relative;
  transform: scale(1.05);
  z-index: 10;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-range {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0;
}

/* Lists */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.styled-list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.25rem;
}

.note-box {
  background-color: #fff7ed;
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.note-box p {
  margin: 0;
  color: #9a3412;
  font-size: 1rem;
}

/* Contact Form */
.form-container {
  max-width: 600px;
  margin: 0 auto 3rem;
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: var(--primary-hover);
}

.success-message,
.error-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.success-message {
  background-color: #dcfce7;
  color: #166534;
}

.error-message {
  background-color: #fee2e2;
  color: #991b1b;
}

.contact-info {
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--bg-light);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.disclaimer {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: justify;
  font-size: 0.875rem;

  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  /* Hide the menu by default on mobile */
  .navigation__wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 2000;
  }

  /* Show when active */
  .navigation__wrapper.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  .navigation__list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .navigation__link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--bg-light);
  }

  .navigation__link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
  }

  .price-option.highlight {
    transform: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 8rem;
  }

  .vyhody-box,
  .price-option {
    padding: 1.5rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}