/* ============================================================
   MAIN STYLESHEET – Adam Dziewulski Webdesign
   ============================================================ */


/* ========== DESIGN TOKENS ========== */

:root {
  /* Colors */
  --c-bg:           #FAFAF7;
  --c-bg-alt:       #F0EFE9;
  --c-surface:      #FFFFFF;
  --c-ink:          #1A1A1A;
  --c-ink-soft:     #5A5A56;
  --c-ink-muted:    #8E8E88;
  --c-accent:       #C8522E;
  --c-accent-hover: #A8421E;
  --c-accent-light: rgba(200, 82, 46, 0.08);
  --c-gold:         #D4A843;
  --c-gold-light:   rgba(212, 168, 67, 0.1);
  --c-border:       #E2E1DB;
  --c-success:      #2E7D52;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:    1180px;
  --radius:   12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}


/* ========== RESET ========== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ========== HEADER ========== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-ink);
  flex-shrink: 0;
}

.logo-img {
  width: 46px;
  height: 46px;
  display: block;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-accent {
  color: var(--c-accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ========== LANGUAGE SELECTOR ========== */

.lang-select {
  position: relative;
  font-family: var(--font-body);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.lang-btn:hover {
  border-color: var(--c-ink-muted);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.lang-btn.open svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-width: 160px;
  z-index: 200;
}

.lang-dropdown.show {
  display: block;
  animation: fadeDown 0.15s ease;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s;
  color: var(--c-ink);
  text-decoration: none;
}

.lang-option:hover {
  background: var(--c-bg-alt);
}

.lang-option.active {
  background: var(--c-accent-light);
  color: var(--c-accent);
  font-weight: 600;
}

.flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ========== HEADER CTA BUTTON ========== */

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.header-cta:hover {
  background: var(--c-accent-hover);
  transform: translateY(-1px);
}


/* ========== MOBILE TOGGLE (reserved for future JS) ========== */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ========== SECTIONS ========== */

section {
  padding: 100px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--c-ink-soft);
  max-width: 560px;
  line-height: 1.7;
}


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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 82, 46, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  border-color: var(--c-ink-muted);
  background: var(--c-surface);
}


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

.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 82, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--c-gold-light);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--c-accent);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(200, 82, 46, 0.2);
  border-radius: 2px;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-email {
  font-size: 0.85rem;
  color: var(--c-ink-muted);
  margin-bottom: 36px;
}
.hero-email a {
  color: var(--c-ink-soft);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.hero-email a:hover {
  color: var(--c-ink);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--c-ink-muted);
  margin-top: 4px;
}


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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--c-surface);
  border-radius: 16px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #FF6058; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28C940; }

.mockup-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  background: var(--c-surface);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--c-ink-muted);
}

.mockup-content {
  padding: 28px;
}

.mockup-hero-block {
  height: 120px;
  background: linear-gradient(135deg, var(--c-accent), #D4683E);
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-hero-block span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.mockup-line {
  height: 10px;
  background: var(--c-bg-alt);
  border-radius: 5px;
  margin-bottom: 10px;
}

.mockup-line.short  { width: 60%; }
.mockup-line.medium { width: 80%; }

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.mockup-card {
  height: 70px;
  background: var(--c-bg-alt);
  border-radius: 8px;
  border: 1px solid var(--c-border);
}


/* ========== HERO FLOATING BADGES ========== */

.hero-float-badge {
  position: absolute;
  padding: 10px 16px;
  background: var(--c-surface);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-float-badge.top-right    { top: -10px;  right: -20px; animation-delay: 0s;   }
.hero-float-badge.bottom-left  { bottom: 20px; left: -30px; animation-delay: 1.5s; }

.hero-float-badge svg {
  width: 18px;
  height: 18px;
}

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


/* ========== PROBLEMS / PAIN POINTS ========== */

.problems {
  background: var(--c-bg-alt);
}

.problems-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--c-border);
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--c-accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-accent);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-ink);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}


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

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.pricing-inner .section-sub {
  margin: 0 auto 48px;
}

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

.price-card {
  background: var(--c-surface);
  border-radius: 16px;
  padding: 36px 28px 32px;
  border: 1.5px solid var(--c-border);
  text-align: left;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 1px var(--c-accent), var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  white-space: nowrap;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--c-ink-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--c-ink-muted);
  margin-bottom: 28px;
}

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

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
}

.price-features li svg {
  width: 18px;
  height: 18px;
  color: var(--c-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

.price-cta.primary {
  background: var(--c-accent);
  color: #fff;
}

.price-cta.primary:hover {
  background: var(--c-accent-hover);
}

.price-cta.outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border);
}

.price-cta.outline:hover {
  border-color: var(--c-ink-muted);
  background: var(--c-bg-alt);
}


/* ========== PRICING COMPARISON ========== */

.pricing-compare {
  margin-top: 56px;
  padding: 36px;
  background: var(--c-bg-alt);
  border-radius: 16px;
  border: 1px solid var(--c-border);
  text-align: center;
}

.pricing-compare h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-compare p {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.compare-bars {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
}

.compare-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--c-border);
}

.compare-item:nth-child(1) .compare-bar { width: 60px;  background: var(--c-success);   }
.compare-item:nth-child(2) .compare-bar { width: 120px; background: var(--c-gold);       }
.compare-item:nth-child(3) .compare-bar { width: 200px; background: var(--c-ink-muted);  }


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

.process {
  background: var(--c-bg-alt);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--c-surface);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 18px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}


/* ========== BENEFITS ========== */

.benefits-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.benefit-item:hover {
  background: var(--c-bg-alt);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--c-accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-accent);
}

.benefit-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}


/* ========== RETAINER UPSELL ========== */

.retainer {
  background: var(--c-ink);
  color: #fff;
}

.retainer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.retainer .section-label          { color: var(--c-gold); }
.retainer .section-label::before  { background: var(--c-gold); }
.retainer .section-title          { color: #fff; }
.retainer .section-sub            { color: rgba(255, 255, 255, 0.65); margin: 0 auto 48px; }

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

.retainer-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}

.retainer-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.retainer-card.featured {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold), var(--shadow-lg);
  position: relative;
}

.retainer-card.on-demand {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.retainer-card.on-demand:hover {
  background: rgba(255, 255, 255, 0.06);
}

.retainer-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--c-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  white-space: nowrap;
}

.retainer-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  text-align: left;
}

.retainer-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
}

.retainer-features li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--c-gold);
}

.retainer-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 4px;
}

.retainer-period {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.retainer-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.retainer-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}


/* ========== CTA FINAL ========== */

.cta-final {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 82, 46, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.cta-final .section-title { margin-bottom: 16px; }
.cta-final .section-sub   { margin: 0 auto 36px; }

.cta-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
  max-width: 100%;
  word-break: break-all;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-email-btn:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 82, 46, 0.3);
}

.cta-email-btn svg {
  width: 20px;
  height: 20px;
}

.cta-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--c-ink-muted);
}

.cta-note a {
  color: var(--c-accent);
  text-decoration: none;
}

.cta-note a:hover {
  text-decoration: underline;
}


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

.contact-form {
  text-align: left;
  margin: 0 auto 8px;
}

.contact-form-honey {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-ink-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200, 82, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  background: var(--c-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 82, 46, 0.28);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-success);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success[hidden] {
  display: none;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--c-success);
}


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

.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--c-border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer p {
  font-size: 0.85rem;
  color: var(--c-ink-muted);
}

.footer a {
  color: var(--c-accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--c-ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

.footer-legal span {
  color: var(--c-border);
  margin: 0 6px;
}

/* ========== LEGAL PAGES ========== */

.legal-page {
  padding: 80px 24px 120px;
  min-height: 60vh;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-ink);
}

.legal-inner .legal-updated {
  font-size: 0.82rem;
  color: var(--c-ink-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 36px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--c-ink-muted);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 20px;
  margin: 8px 0;
}

.legal-content a {
  color: var(--c-accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-placeholder {
  background: #fff3cd;
  border: 1px dashed #e0a000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #7a5200;
}


/* ========== ANIMATION UTILITIES ========== */

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delay helpers */
.delay-80  { transition-delay: 0.08s; }
.delay-100 { transition-delay: 0.1s;  }
.delay-150 { transition-delay: 0.15s; }
.delay-160 { transition-delay: 0.16s; }
.delay-200 { transition-delay: 0.2s;  }
.delay-240 { transition-delay: 0.24s; }
.delay-300 { transition-delay: 0.3s;  }


/* ========== RTL SUPPORT (Arabic) ========== */

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] .section-label::before {
  order: 1;
}

html[dir="rtl"] .hero-stats {
  direction: ltr;
}

html[dir="rtl"] .benefit-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .price-features li {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}


/* ========== RESPONSIVE – TABLET ========== */

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual       { order: -1; }
  .hero-mockup       { max-width: 400px; margin: 0 auto; }
  .hero-float-badge  { display: none; }
  .problems-grid     { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-steps     { grid-template-columns: 1fr 1fr; }
  .benefits-inner    { grid-template-columns: 1fr; }
  .retainer-grid     { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .compare-bars      { flex-direction: column; align-items: center; }
}


/* ========== RESPONSIVE – MOBILE ========== */

@media (max-width: 600px) {
  section              { padding: 70px 18px; }
  .header-inner        { padding: 0 16px; }
  .header-cta          { padding: 8px 14px; font-size: 0.82rem; }
  .hero                { padding-top: 130px; padding-bottom: 60px; }
  .hero-stats          { gap: 24px; }
  .hero-stat-num       { font-size: 1.6rem; }
  .process-steps       { grid-template-columns: 1fr; }
  .pricing-compare     { padding: 24px; }
  .footer-inner        { flex-direction: column; text-align: center; }
  .hero-actions        { flex-direction: column; }
  .btn-primary,
  .btn-secondary       { width: 100%; justify-content: center; }
  .cta-email-btn       { padding: 16px 24px; font-size: 0.95rem; }
}

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

.contact-page {
  padding: 100px 24px 120px;
  min-height: 80vh;
}

.contact-page-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-page .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-ink);
}

.contact-page .section-sub {
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  margin-bottom: 48px;
  max-width: 540px;
}

.contact-page .contact-form {
  margin: 0;
}

.form-privacy-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--c-ink-muted);
  text-align: center;
}

.form-privacy-note a {
  color: var(--c-accent);
  text-decoration: none;
}

.form-privacy-note a:hover {
  text-decoration: underline;
}

.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8E88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200, 82, 46, 0.1);
}
