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

:root {
  --purple: #8B3A9E;
  --magenta: #E91E8C;
  --purple-mid: #B946B8;
  --dark: #2D1B3D;
  --light-bg: #F8F5FA;
  --white: #FFFFFF;
  --text-gray: #666666;
  --gradient: linear-gradient(135deg, var(--purple), var(--magenta));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ==================== NAVBAR ==================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

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

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-container:hover { transform: scale(1.02); }

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  padding: 12px 28px;
  background: var(--magenta);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 58, 158, 0.3);
}

.language-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid rgba(139, 58, 158, 0.3);
  border-radius: 6px;
  color: var(--purple);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(139, 58, 158, 0.1);
  border-color: var(--purple);
}

.lang-btn.active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

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

.hero {
  position: relative;
  background: linear-gradient(135deg, #8B3A9E 0%, #B946B8 50%, #E91E8C 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  margin-top: 80px;
}


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

.hero-content { color: white; }

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
}

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

.hero-image { text-align: right; }

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-left: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.hero-watermark {
  position: absolute;
  font-size: 280px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 20px;
  white-space: nowrap;
}

/* ==================== BUTTONS ==================== */

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 58, 158, 0.4);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 58, 158, 0.5);
}

.btn-primary.large {
  padding: 18px 50px;
  font-size: 18px;
}

.btn-outline-white {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-white:hover {
  background: white;
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-outline-white.secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-tool {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Inter', sans-serif;
  width: 100%;
  margin-top: auto;
}

.btn-tool:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 58, 158, 0.4);
}

/* ==================== SECTION COMMON ==================== */

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

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

/* ==================== ABOUT ==================== */

.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Wavy background for About */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B3A9E' fill-opacity='0.03' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

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

.about-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid rgba(139, 58, 158, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(139, 58, 158, 0.15);
}

/* About Icon - supports photos or emoji */
.about-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-card:hover .about-icon {
  transform: scale(1.1);
}

.about-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-icon-emoji {
  font-size: 40px;
  line-height: 1;
}

/* Text-based icons in about cards (SEO, SM, AI) */
.about-icon .about-icon-emoji:not([class*="emoji"]) {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  font-family: 'Inter', sans-serif;
}

.about-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 16px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  flex-grow: 1;
}

/* Button inside about card (for tools section) */
.btn-card {
  margin-top: 24px;
  padding: 14px 28px;
  font-size: 15px;
}

/* Report price in report cards */
.report-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--magenta);
  margin-top: 16px;
}

.report-card {
  justify-content: flex-start;
}

.report-card p {
  flex-grow: 0;
}

/* Button group for dual buttons */
.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.button-group-vip {
  justify-content: center;
}

/* Secondary button (outline style) */
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid var(--purple);
  border-radius: 50px;
  color: var(--purple);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 58, 158, 0.3);
}

/* Tools section uses about styles but with different background */
.tools-section {
  background: var(--light-bg);
}

.tools-section::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23E91E8C' fill-opacity='0.03' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,144C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top;
  background-size: 100% auto;
}

.tools-section .about-card {
  background: var(--white);
}

/* Blurred "W BUDOWIE" card */
.tool-card-wrapper {
  position: relative;
}

.blurred-card {
  filter: blur(2px);
  opacity: 0.6;
  pointer-events: none;
}

.coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(139, 58, 158, 0.95);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 20px;
  z-index: 10;
  white-space: nowrap;
}

/* ==================== SYMBOLS ==================== */

.step-symbol,
.tool-symbol {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
}

/* ==================== TOOLS ==================== */

.tools {
  padding: 100px 0;
  background: var(--light-bg);
}

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

.tool-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  border: 2px solid rgba(139, 58, 158, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  box-shadow: 0 25px 50px rgba(139, 58, 158, 0.2);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-icon {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  opacity: 0.1;
}

.icon-bg.seo { background: var(--purple); }
.icon-bg.social { background: var(--purple-mid); }
.icon-bg.auto { background: var(--magenta); }

.tool-symbol {
  font-size: 24px;
  font-weight: 700;
  color: var(--purple);
  position: relative;
  z-index: 1;
}

.tool-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.tool-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
}

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

.tool-features li {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.tool-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 600;
}

/* ==================== PACKAGES ==================== */

.packages {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

/* Wavy background for Packages */
.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23B946B8' fill-opacity='0.04' d='M0,288L48,272C96,256,192,224,288,213.3C384,203,480,213,576,229.3C672,245,768,267,864,261.3C960,256,1056,224,1152,213.3C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B3A9E' fill-opacity='0.03' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.packages .container {
  position: relative;
  z-index: 1;
}

/* New 3-column packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.package-box {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 20px;
  border: 2px solid rgba(139, 58, 158, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.package-box:hover {
  transform: translateY(-10px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(139, 58, 158, 0.15);
}

.package-box .about-icon {
  margin-bottom: 16px;
}

.package-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.package-box .package-problem {
  text-align: left;
  font-size: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.package-box .package-result {
  text-align: left;
  font-size: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-tier-info {
  margin-bottom: 16px;
}

.package-tier-info .tier-mini {
  background: var(--white);
  border: 1px solid rgba(139, 58, 158, 0.15);
  padding: 12px 14px;
  margin-bottom: 10px;
  text-align: left;
}

.package-tier-info .tier-mini:last-child {
  margin-bottom: 0;
}

.package-tier-info .tier-name {
  margin-bottom: 0;
  font-size: 13px;
}

.package-box .button-group {
  margin-top: auto;
  flex-direction: column;
  gap: 10px;
}

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

.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.package-row.reverse .package-image { order: 2; }
.package-row.reverse .package-content { order: 1; }

.package-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 24px;
  opacity: 0.8;
  transition: transform 0.4s ease;
}

.package-image:hover .package-image-placeholder {
  transform: translateY(-10px) rotate(2deg);
}

.package-icon-small { 
  font-size: 16px; 
  font-weight: 700;
  color: var(--purple);
  background: rgba(139, 58, 158, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px; 
}

.package-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.package-problem {
  background: rgba(139, 58, 158, 0.08);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 24px;
}

.package-problem strong { color: var(--purple); }

.package-tiers {
  margin-bottom: 24px;
}

.tier-mini {
  background: var(--light-bg);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid var(--purple);
}

.tier-mini h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 8px;
}

.tier-mini p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

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

.tier-main {
  border: 2px solid rgba(139, 58, 158, 0.2);
  padding: 20px;
  border-radius: 16px;
}

.tier-main.single {
  border-left: 4px solid var(--magenta);
  background: linear-gradient(135deg, rgba(139, 58, 158, 0.05), rgba(233, 30, 140, 0.05));
}

.tier-main h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.tier-main ul {
  list-style: none;
  margin-bottom: 16px;
}

.tier-main ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.tier-main ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 600;
}

.package-result {
  background: linear-gradient(135deg, rgba(139, 58, 158, 0.1), rgba(233, 30, 140, 0.1));
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 16px;
  border-left: 4px solid var(--magenta);
}

.package-result strong { color: var(--magenta); }

.package-ideal {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.package-ideal strong { color: var(--purple); }

/* Package Tiers */
.package-tiers {
  margin-bottom: 24px;
}

.tier-mini,
.tier-main {
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.tier-mini {
  background: rgba(139, 58, 158, 0.06);
  border: 1px solid rgba(139, 58, 158, 0.15);
}

.tier-main {
  background: var(--white);
  border: 2px solid rgba(139, 58, 158, 0.2);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.tier-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
}

.tier-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--magenta);
}

.tier-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.tier-main .package-list {
  margin-bottom: 0;
}

/* Website Box */
.website-box {
  background: var(--light-bg);
  border: 2px solid rgba(139, 58, 158, 0.2);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.website-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.website-box > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.website-box-price {
  margin-bottom: 20px;
}

.website-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--magenta);
  display: block;
  margin-bottom: 4px;
}

.website-box-price small {
  font-size: 14px;
  color: var(--text-gray);
}

/* VIP */
.package-vip {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  padding: 25px 50px;
  border-radius: 30px;
  position: relative;
  margin-top: 0;
  box-shadow: 0 30px 80px rgba(139, 58, 158, 0.4);
}

.vip-badge {
  position: absolute;
  top: -15px;
  right: 50px;
  background: var(--dark);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.vip-content {
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vip-content .package-icon-small { 
  font-size: 16px; 
  color: white;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px; 
}

.vip-content h3 {
  font-size: 42px;
  color: white;
  margin-bottom: 8px;
}
.vip-icon {
  width: 60px;   /* mniejszy okrąg */
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vip-icon img {
  width: 40px;   /* Twoja ikona */
  height: 40px;
  object-fit: contain;
}

.vip-tagline {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.95;
}

.vip-description {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
}

.vip-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  text-align: left;
  max-width: 600px;
}

.vip-list li {
  font-size: 16px;
  line-height: 2;
  opacity: 0.95;
  padding-left: 20px;
  position: relative;
}

.vip-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: white;
  font-weight: 600;
}

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

.process {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Wavy background for Process */
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23E91E8C' fill-opacity='0.02' d='M0,32L48,53.3C96,75,192,117,288,122.7C384,128,480,96,576,90.7C672,85,768,107,864,138.7C960,171,1056,213,1152,208C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

/* Old grid styles - kept for backwards compatibility */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.process-grid-4 {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

/* New 2x2 grid for process */
.process-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.process-step {
  background: var(--white);
  padding: 50px 30px 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.process-step:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 58, 158, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(139, 58, 158, 0.4);
}

.step-icon { 
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  background: rgba(139, 58, 158, 0.1);
  padding: 8px 12px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.process-arrow {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
}

/* ==================== SOCIAL PROOF ==================== */

.social-proof {
  padding: 80px 0 10px;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B3A9E' fill-opacity='0.04' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,197.3C672,192,768,160,864,165.3C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.social-proof .container {
  position: relative;
  z-index: 1;
}

.social-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-box {
  width: 140px;
  height: 140px;
  background: var(--white);
  border: 2px solid rgba(139, 58, 158, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-box:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 12px 30px rgba(139, 58, 158, 0.2);
}

.social-box-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.social-box-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.social-box-label {
  font-size: 12px;
  color: var(--text-gray);
}

/* ==================== CERTIFICATES ==================== */

.certificates {
  padding: 40px 0 80px;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.certificates .container {
  position: relative;
  z-index: 1;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px solid rgba(139, 58, 158, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  height: 110px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cert-panel:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 12px 30px rgba(139, 58, 158, 0.15);
}

.cert-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 58, 158, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-panel:hover .cert-overlay {
  opacity: 1;
}

.cert-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cert-info p {
  font-size: 15px;
  color: var(--text-gray);
}

/* ==================== CTA BOTTOM ==================== */

.cta-bottom {
  background: linear-gradient(135deg, #8B3A9E 0%, #E91E8C 100%);
  padding: 100px 0;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.cta-image-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content { color: white; }

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.95;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ==================== CONTACT ==================== */

.contact {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

/* Wavy background for Contact */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B3A9E' fill-opacity='0.04' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,197.3C672,192,768,160,864,165.3C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a {
  font-size: 16px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.contact-item a:hover { color: var(--purple); }

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group { margin-bottom: 20px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(139, 58, 158, 0.2);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 58, 158, 0.1);
}

.form-group textarea { resize: vertical; }

.form-group.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--purple);
}

.form-group.checkbox label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-gray);
}

.contact-form-wrapper .btn-primary { width: 100%; }

.form-success {
  display: none;
  background: #10b981;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

.form-success.show { display: block; }

.form-group.error input,
.form-group.error textarea { border-color: #e53935; }

/* ==================== PRIVACY POLICY ==================== */

.privacy-policy {
  padding: 140px 0 100px;
  background: var(--white);
}

.privacy-policy .container {
  max-width: 900px;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 80px;
}

.privacy-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.privacy-hero .update-date {
  font-size: 16px;
  color: var(--text-gray);
  font-style: italic;
}

.privacy-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(139, 58, 158, 0.2);
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.privacy-content ul,
.privacy-content ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.privacy-content strong {
  color: var(--dark);
  font-weight: 600;
}

.privacy-content a {
  color: var(--purple);
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: var(--magenta);
}

.privacy-content .highlight-box {
  background: var(--light-bg);
  border-left: 4px solid var(--purple);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.privacy-content .contact-box {
  background: linear-gradient(135deg, rgba(139, 58, 158, 0.1), rgba(233, 30, 140, 0.1));
  border: 2px solid rgba(139, 58, 158, 0.2);
  padding: 24px;
  margin: 32px 0;
  border-radius: 12px;
}

.privacy-content .contact-box h3 {
  margin-top: 0;
  color: var(--purple);
}

.company-details {
  background: var(--white);
  border: 2px solid rgba(139, 58, 158, 0.2);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 8px;
}

.company-details p {
  margin-bottom: 8px;
  font-size: 15px;
}

.privacy-content .placeholder-text {
  background: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin: 8px 0;
}

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

.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img { height: 35px; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-description {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--magenta); }

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

.social-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-link:hover { color: var(--magenta); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==================== COOKIE BANNER ==================== */

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

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

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cookie-banner-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

.cookie-banner-text a {
  color: var(--purple);
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: var(--magenta);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 12px 28px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 58, 158, 0.4);
}

.cookie-btn-reject {
  padding: 12px 28px;
  background: var(--white);
  color: var(--purple);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--purple);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.cookie-btn-reject:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: none;
  border: none;
  color: var(--purple);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  padding: 12px 8px;
  transition: color 0.3s ease;
}

.cookie-btn-settings:hover {
  color: var(--magenta);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal-overlay.show .cookie-modal {
  transform: scale(1);
}

.cookie-modal h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.cookie-category-header .cookie-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(139, 58, 158, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

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

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

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

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--purple);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: var(--purple);
  opacity: 0.6;
  cursor: not-allowed;
}

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

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cookie-modal-actions .cookie-btn-accept,
.cookie-modal-actions .cookie-btn-reject {
  flex: 1;
  text-align: center;
}

/* ==================== FADE IN ==================== */

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

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

/* ==================== RESPONSIVE ==================== */

@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

  .nav-menu.active { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .language-switcher { margin-left: auto; }

  .process-grid,
  .process-grid-4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  /* Packages grid - tablet: 2+1 layout */
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .packages-grid .package-box:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  .logo-img {
    height: 40px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .hero-buttons { justify-content: center; }

  .hero-image { order: -1; text-align: center; }
  .hero-image-placeholder { max-width: 300px; height: 350px; margin: 0 auto; }
  .hero-watermark { font-size: 120px; }

  /* About */
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-title { font-size: 32px; margin-bottom: 40px; }

  /* Tools */
  .tools { padding: 80px 0; }
  .tools-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Packages */
  .packages { padding: 80px 0; }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .packages-grid .package-box:last-child {
    max-width: 100%;
  }

  .package-box {
    padding: 30px 20px;
  }

  .package-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .package-row.reverse .package-image,
  .package-row.reverse .package-content { order: initial; }

  .package-image { text-align: center; }
  .package-image-placeholder { max-width: 100%; height: 250px; }
  .package-content h3 { font-size: 26px; }

  .website-box { padding: 24px 20px; margin-bottom: 40px; }
  .website-box h3 { font-size: 20px; }
  .website-price { font-size: 24px; }

  .package-vip { padding: 40px 24px; }
  .vip-content h3 { font-size: 32px; }
  .vip-badge { right: 20px; }

  /* Process */
  .process { padding: 80px 0; }
  .process-grid-2x2 { grid-template-columns: 1fr; }

  /* Social Proof */
  .social-proof { padding: 60px 0 30px; }
  .social-boxes { gap: 16px; }
  .social-box { width: 120px; height: 120px; }
  .social-box-number { font-size: 18px; }

  /* Certificates */
  .certificates { padding: 30px 0 60px; }
  .cert-panel {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }
  .cert-image { width: 80px; height: 80px; }
  .cert-info h3 { font-size: 18px; }
  .cert-info p { font-size: 14px; }

  /* CTA */
  .cta-bottom { padding: 80px 0; }

  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
  }

  .cta-image { order: -1; }
  .cta-image-placeholder { height: 250px; }
  .cta-content h2 { font-size: 36px; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 30px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Buttons */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-outline-white { width: 100%; text-align: center; }
  .btn-primary.large { width: 100%; }

  /* Button groups - stack on mobile */
  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .button-group .btn-secondary,
  .button-group .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Report cards */
  .report-price {
    font-size: 24px;
  }

  /* Placeholder text */
  .placeholder-text {
    font-size: 12px;
  }

  /* Cookie Banner */
  .cookie-banner-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .cookie-btn-accept,
  .cookie-btn-reject,
  .cookie-btn-settings {
    width: 100%;
  }

  .cookie-modal { padding: 24px; }
  .cookie-modal h2 { font-size: 20px; }
  .cookie-modal-actions { flex-direction: column; }

  /* Privacy Policy */
  .privacy-policy { padding: 100px 0 60px; }
  .privacy-hero { padding-top: 40px; margin-bottom: 40px; }
  .privacy-hero h1 { font-size: 32px; }
  .privacy-content h2 { font-size: 24px; }
  .privacy-content h3 { font-size: 18px; }
  .privacy-content p,
  .privacy-content li { font-size: 15px; }
}
