/* ============================================
   Web Forged — style.css
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1C2B3A;
  --accent: #C17F24;
  --accent-hover: #D4922E;
  --bg: #FFFFFF;
  --bg-secondary: #F5F5F0;
  --text: #1C2B3A;
  --text-light: #5A6A7A;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #B0BEC5;
  --border: #E0DDD5;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(28,43,58,0.08);
  --shadow-lg: 0 8px 32px rgba(28,43,58,0.12);
  --transition: 0.25s ease;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(193,127,36,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  flex-shrink: 0;
}

.logo svg { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-on-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text-on-dark);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* --- Hero --- */
.hero {
  background: var(--primary);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193,127,36,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,127,36,0.3), transparent);
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

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

.trust-line {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-line svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-dark {
  background: var(--primary);
  color: var(--text-on-dark);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: var(--text-on-dark-muted);
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(193,127,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.benefit-card h3 {
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

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

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-note {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Portfolio --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  transition: all var(--transition);
}

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

.portfolio-preview {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-before,
.portfolio-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: opacity 0.4s ease;
}

.portfolio-before {
  background: linear-gradient(135deg, #d4d4d4, #a0a0a0);
  flex-direction: column;
  gap: 8px;
}

.portfolio-before .old-site {
  background: #fff;
  border-radius: 4px;
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 200px;
}

.portfolio-before .old-site span {
  display: block;
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  color: #333;
}

.portfolio-before .old-site small {
  color: #999;
  font-size: 0.7rem;
}

.portfolio-after {
  background: linear-gradient(135deg, var(--primary), #2a4560);
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  opacity: 0;
}

.portfolio-card:hover .portfolio-after {
  opacity: 1;
}

.portfolio-card:hover .portfolio-before {
  opacity: 0;
}

.portfolio-after .mock-nav {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.portfolio-after .mock-hero {
  text-align: left;
  width: 100%;
}

.portfolio-after .mock-hero span {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-after .mock-hero small {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

.portfolio-after .mock-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.portfolio-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(28,43,58,0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-label {
  opacity: 0;
}

.portfolio-after-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.portfolio-body {
  padding: 24px;
}

.portfolio-body h3 {
  margin-bottom: 4px;
}

.portfolio-tag {
  font-size: 0.85rem;
  color: var(--text-light);
}

.portfolio-cta-card {
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  min-height: 340px;
  transition: all var(--transition);
}

.portfolio-cta-card:hover {
  background: rgba(193,127,36,0.04);
}

.portfolio-cta-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.portfolio-cta-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.testimonial-author strong {
  color: var(--text);
}

/* --- About --- */
.about-block {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 740px;
  margin: 0 auto;
}

.about-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(193,127,36,0.15);
  flex-shrink: 0;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.about-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .about-block {
    flex-direction: column;
    text-align: center;
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-nav h4 {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--accent); }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.contact-sidebar {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-sidebar h3 {
  margin-bottom: 16px;
}

.contact-sidebar p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(193,127,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-method-text a,
.contact-method-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Process Page --- */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.process-step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-step-content h3 {
  margin-bottom: 8px;
  padding-top: 10px;
}

.process-step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-step-content .step-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(193,127,36,0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* --- Portfolio Page --- */
.portfolio-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.portfolio-feature-visual {
  position: relative;
}

.portfolio-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.portfolio-tab-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
}

.portfolio-tab-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.portfolio-tab-content {
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tab-before {
  background: linear-gradient(135deg, #d4d4d4, #b0b0b0);
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.tab-after {
  background: linear-gradient(135deg, var(--primary), #2a4560);
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  display: none;
}

.tab-after.active, .tab-before.active {
  display: flex;
}

.tab-before:not(.active), .tab-after:not(.active) {
  display: none;
}

.portfolio-feature-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.portfolio-feature-info p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.improvement-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.improvement-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.improvement-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Privacy Page --- */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
}

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

/* --- Page Hero --- */
.page-hero {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  flex: 1;
}

.cookie-inner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-on-dark);
  transition: all var(--transition);
  font-family: inherit;
}

.cookie-btn:hover {
  border-color: rgba(255,255,255,0.4);
}

.cookie-btn-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .portfolio-feature { grid-template-columns: 1fr; }

  .hero { padding: 60px 0; }
  .section { padding: 60px 0; }
  .cta-section { padding: 60px 0; }

  .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  h1 { font-size: 1.75rem; }
}
