@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #1c1c1a;
  color: #b5b2ab;
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* ==========================================
   GLOBAL TEXT SAFETY
   ========================================== */

p,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ==========================================
   GLOBAL TYPOGRAPHY
   ========================================== */

h1,
h2,
h3 {
  margin: 0 0 1.5rem 0;
}

h1 {
  font-size: clamp(2rem, 3.5vw + 0.8rem, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fafafa;
  font-family: 'DM Serif Display', Georgia, serif;
}

h2 {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.3rem);
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: clamp(1.1rem, 1.3vw + 0.4rem, 1.4rem);
  font-weight: 600;
  color: #fafafa;
}

li {
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.15rem);
  margin-top: 0.875rem;
  line-height: 1.6;
}

p,
a,
span {
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.15rem);
  line-height: 1.65;
  margin: 0 0 1rem 0;
  color: #E6E6E4;
}

section {
  padding: 0 0;
}

/* ==========================================
   CONTAINER GLOBAL
   ========================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: hidden;
  box-sizing: border-box;
}

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

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* ==========================================
   TOP BAR / HEADER
   ========================================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: all 0.4s ease;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  justify-content: space-between;
}

.logo {
  max-width: 200px;
}

.top-bar-links a {
  font-size: 1.3rem;
  color: #66c2b4;
  margin: 0;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar a:hover {
  text-decoration: underline;
}

body.scrolled .top-bar {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(102, 194, 180, 0.1);
  transition: backdrop-filter 1s ease, background-color 0.3s ease;
}

.top-bar .cta-button {
  background-color: #1A1A1A;
  border: 2px solid #66c2b4;
  color: #66c2b4;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: #66c2b4;
  color: black;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #27f5b0;
  color: black;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(102, 194, 180, 0.25);
}

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-content: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 202, 165, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 202, 165, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  width: 100%;
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-benefits {
  margin-bottom: 2.5rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.hero-benefits li::marker {
  color: #5dcaa5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-content h1 {
  text-align: center;
}


h1 .highlight {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  position: relative;
  display: inline;
}

h1 .highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0.05em;
  height: 0.35em;
  background: #66c2b4;
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px 8px 4px 6px;
  transform: rotate(-0.5deg);
}

.hero-content h2 {
  text-transform: initial;
  margin-top: 2rem;
}

.hero-content .cta-button {
  align-self: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* ==========================================
   FILTER SECTION
   ========================================== */

.filter {
  padding: 5rem 0;
  background-color: #1e1e1c;
}

.section-header {
  text-align: center;
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.filter-grid {
  display: grid;
  margin: 0 auto;
  padding: 0;
  max-width: 850px;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: justify;
}

.filter-content-left {
  background-color: rgb(50, 50, 50);
  padding: 2rem;
  border-radius: 1.5rem 0 0 1.5rem;
}

.filter-content-right {
  background-color: rgba(24, 24, 24, 0.3);
  border: 2px solid rgb(50, 50, 50);
  padding: 2rem;
  border-radius: 0 1.5rem 1.5rem 0;
}

.filter-content-left h3 {
  color: #66c2b4;
}

.filter-benefits {
  margin-bottom: 2rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.filter-benefits li::marker {
  color: #4a4a4a;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem {
  padding: 6rem 0;
  background-color: #212120;
}

.problem .container {
  max-width: 800px;
}

.problem .section-header {
  margin-bottom: 2.5rem;
}

.problem-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: justify;
  width: 100%;
  overflow-x: hidden;
}

.problem-text {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.problem-text p {
  color: #b5b2ab;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.problem-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .problem-text p {
    text-align: left;
  }
}

.problem-divider {
  width: 100%;
  height: 1px;
  background-color: #3a3a38;
  margin: 2.5rem 0;
}

.problem-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid #66c2b4;
}

.problem-points li {
  color: #E6E6E4;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  line-height: 1.2;
}

.problem-points li:last-child {
  margin-bottom: 0;
}

.problem-points li br {
  display: block;
  content: "";
  margin-top: 0.25rem;
}

.problem-summary {
  color: #aaa;
  font-style: italic;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.offer {
  padding: 6rem 0;
  background-color: #1e1e1c;
}

.offer .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Step Indicator */
.pricing-step {
  margin-bottom: 2rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #66c2b4;
  color: #1c1c1a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

.step-label {
  color: #888;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Setup Card */
.setup-card {
  background: #252523;
  border: 1px solid #333;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
  overflow-x: hidden;
}

.setup-card:hover {
  border-color: #444;
}

.setup-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.setup-card-title h3 {
  margin-bottom: 0.25rem;
}

.setup-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin: 0;
}

.setup-card-price {
  text-align: right;
}

.setup-card-price .price-amount {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: #fafafa;
  line-height: 1;
}

.setup-card-price .price-label {
  color: #888;
  font-size: 0.875rem;
}

.setup-card-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .setup-card-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .setup-card-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.setup-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ccc;
  font-size: 0.95rem;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #66c2b4;
  margin-top: 2px;
}

/* Connector */
.pricing-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.connector-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, #333, #66c2b4);
}

.connector-arrow {
  width: 40px;
  height: 40px;
  background: #252523;
  border: 2px solid #66c2b4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.connector-arrow svg {
  width: 20px;
  height: 20px;
  color: #66c2b4;
}

.connector-text {
  color: #888;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Plan Card */
.plan-card {
  background: #252523;
  border: 1px solid #333;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow-x: hidden;
}

.plan-card:hover {
  border-color: #444;
}

.plan-featured {
  border-color: #66c2b4;
  background: linear-gradient(to bottom, rgba(102, 194, 180, 0.08), transparent);
}

.plan-featured:hover {
  border-color: #66c2b4;
  transform: translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #66c2b4;
  color: #1c1c1a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  margin-bottom: 0.25rem;
}

.plan-subtitle {
  color: #888;
  margin: 0;
}

/* Plan Quantity Highlight */
.plan-quantity {
  background: #1c1c1a;
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-featured .plan-quantity {
  border-color: rgba(102, 194, 180, 0.3);
  background: rgba(102, 194, 180, 0.05);
}

.quantity-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: #66c2b4;
  line-height: 1;
}

.quantity-label {
  display: block;
  color: #888;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Plan Price */
.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.plan-price .price-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.25rem;
  color: #fafafa;
}

.plan-price .price-period {
  color: #888;
  font-size: 1rem;
}

/* Plan Features */
.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.plan-feature:last-child {
  margin-bottom: 0;
}

/* Plan Button */
.plan-button {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid #444;
  color: #fafafa;
}

.plan-button:hover {
  border-color: #66c2b4;
  color: #66c2b4;
}

.plan-button-featured {
  background: #66c2b4;
  border-color: #66c2b4;
  color: #1c1c1a;
}

.plan-button-featured:hover {
  background: #27f5b0;
  border-color: #27f5b0;
  color: #1c1c1a;
  transform: translateY(-2px);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
  padding: 5rem 0;
  background-color: #1c1c1a;
}

.prozess-steps {
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}

.prozess-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.prozess-step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prozess-num {
  width: 40px;
  height: 40px;
  background: #66c2b4;
  color: #1c1c1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.prozess-connector {
  width: 2px;
  flex: 1;
  background: #333;
  margin-top: 0.5rem;
}

.prozess-step:last-child .prozess-connector {
  display: none;
}

.prozess-body {
  padding-bottom: 2rem;
}

.prozess-title {
  font-size: 1.1rem;
  color: #fafafa;
  margin-bottom: 0.5rem;
}

.prozess-desc {
  color: #aaa;
  margin: 0;
}

/* ==========================================
   BORDER SECTION
   ========================================== */

.border {
  padding: 5rem 0;
  background-color: #1e1e1c;
}

.border .section-header {
  text-align: center;
}

.border-layout {
  max-width: 600px;
  margin: 0 auto;
}

.border-box {
  background: #252523;
  border: 1px solid #333;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  overflow-x: hidden;
}

.border-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.border-list li {
  display: flex;
  line-height: 1.6;
  align-items: center;
  gap: 0.75rem;
  color: #999;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.border-list li:last-child {
  margin-bottom: 0;
}

.border-list li::before {
  content: "×";
  color: #c66;
  font-weight: 600;
  font-size: 1.2rem;
}

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

.faq {
  padding: 6rem 0;
  background-color: #1c1c1a;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: justify;
}

.faq-item {
  background: #252523;
  border: 1px solid #333;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #444;
}

.faq-item.active {
  border-color: #66c2b4;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fafafa;
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.4;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #66c2b4;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  color: #aaa;
  line-height: 1.7;
}

/* ==========================================
   ABOUT ME SECTION
   ========================================== */

.about-me {
  padding: 5rem 0;
  background-color: #1e1e1c;
}

.about-me-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  text-align: justify;
}

.image-placeholder {
  display: flex;
  justify-content: center;
}

.about-me-img {
  width: 100%;
  height: 300px;
  height: auto;
  border-radius: 2rem;
  display: block;
}

.about-me-text {
  color: #ccc;
}

.newsletter-button {
  color: #66c2b4;
  margin: 0;
  text-decoration: none;
}

/* ==========================================
   CALL TO ACTION SECTION
   ========================================== */

.call-to-action {
  background: linear-gradient(180deg,
      #141412 0%,
      rgba(102, 194, 180, 0.1) 50%);
  text-align: center;
  padding: 5rem 0;
}

.cta-end {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-end h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.4rem);
  color: #E8E5DE;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cta-end p {
  color: #9A9890;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.footer {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-box {
  color: #666;
  text-decoration: none;
}

.footer-box:hover {
  color: #999;
  text-decoration: underline;
}

.linkedin-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.linkedin-link:hover {
  background: #66c2b4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link svg {
  width: 25px;
  height: 25px;
}

/* ==========================================
   RESPONSIVE - TABLET (max-width: 900px)
   ========================================== */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-benefits {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .filter-content-left {
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .filter-content-right {
    border-radius: 0 0 1.5rem 1.5rem;
  }

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

  .setup-card-header {
    flex-direction: column;
    text-align: center;
  }

  .setup-card-price {
    text-align: center;
  }

  .about-me-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-placeholder {
    display: flex;
    justify-content: center;
  }

  .about-me-img {
    max-width: 280px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE LARGE (max-width: 768px)
   ========================================== */

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

  .top-bar {
    padding: 0.875rem 1rem;
  }

  .top-bar-links {
    gap: 1rem;
  }

  .top-bar-links a {
    font-size: 0.9rem;
  }

  .top-bar .cta-button {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .filter {
    padding: 4rem 0;
  }

  .filter-content-left,
  .filter-content-right {
    padding: 1.5rem;
  }

  .problem {
    padding: 5rem 0;
  }

  .problem-container {
    padding: 0;
  }

  .offer {
    padding: 5rem 0;
  }

  .process {
    padding: 4rem 0;
  }

  .border {
    padding: 4rem 0;
  }

  .faq {
    padding: 5rem 0;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question span {
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .about-me {
    padding: 4rem 0;
  }

  .call-to-action {
    padding: 4rem 0;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE (max-width: 600px)
   ========================================== */

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .logo {
    max-width: 130px;
  }

  .top-bar {
    padding: 0.75rem 1rem;
  }

  .top-bar-links a {
    font-size: 0.85rem;
  }

  .top-bar .cta-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  h2 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-benefits {
    margin-bottom: 2rem;
  }

  .hero-content .cta-button {
    margin: 1.5rem auto;
    width: 100%;
    max-width: 280px;
  }

  .filter {
    padding: 3rem 0;
  }

  .filter-content-left,
  .filter-content-right {
    padding: 1.25rem;
  }

  .problem {
    padding: 4rem 0;
  }

  .problem-divider {
    margin: 2rem 0;
  }

  .problem-points {
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

  .offer {
    padding: 4rem 0;
  }

  .setup-card,
  .plan-card {
    padding: 1.5rem;
  }

  .setup-card-features {
    grid-template-columns: 1fr;
  }

  .setup-card-price .price-amount {
    font-size: 1.75rem;
  }

  .plan-price .price-amount {
    font-size: 2rem;
  }

  .quantity-number {
    font-size: 2.5rem;
  }

  .process {
    padding: 3rem 0;
  }

  .prozess-step {
    gap: 1rem;
  }

  .border {
    padding: 3rem 0;
  }

  .border-box {
    padding: 1.25rem 1.5rem;
  }

  .faq {
    padding: 4rem 0;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem 1.25rem;
  }

  .about-me {
    padding: 3rem 0;
  }

  .about-me-img {
    width: 180px;
    height: auto;
  }

  .call-to-action {
    padding: 3rem 0;
  }

  .cta-end {
    padding: 0 1rem;
  }

  .cta-end h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

/* ==========================================
   RESPONSIVE - VERY SMALL (max-width: 400px)
   ========================================== */

@media (max-width: 400px) {
  .container {
    padding: 0 0.75rem;
  }

  .top-bar {
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
  }

  .logo {
    max-width: 100px;
  }

  .top-bar-links {
    gap: 0.625rem;
  }

  .top-bar-links a {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .top-bar .cta-button {
    padding: 0.4rem 0.625rem;
    font-size: 0.7rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .problem-points li {
    font-size: 0.9rem;
  }

  .plan-card,
  .setup-card {
    padding: 1.25rem;
  }

  .setup-card-price .price-amount {
    font-size: 1.5rem;
  }

  .quantity-number {
    font-size: 2.25rem;
  }

  .plan-price .price-amount {
    font-size: 1.75rem;
  }

  .hero-content .cta-button {
    width: 100%;
    max-width: 250px;
  }
}