:root {
  --color-primary: #FF1FB4;
  --color-dark: #0A0A0A;
  --color-bg: #ffffff;
  --color-gray: #f9f9f9;
  --color-text: #333;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Button */
.button {
  display: inline-block;
  background: linear-gradient(135deg, #FF1FB4, #FF63D1);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 31, 180, 0.3);
}

.button-light {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.button-light:hover {
  background: #fce7f3;
}

/* Header */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-branding {
  flex: 1 1 auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  text-decoration: none;
}

.main-navigation {
  flex: 2 1 auto;
}

.main-navigation .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-navigation .menu li a {
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-navigation .menu li a:hover {
  color: var(--color-primary);
}

.header-action {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #666;
}

.footer-navigation .footer-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-wrap: wrap;
}

.footer-navigation .footer-menu li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation .footer-menu li a:hover {
  color: var(--color-primary);
}

.footer-copy {
  margin: 0;
  text-align: center;
}

/* Hero Section */
.hero {
  background: var(--color-dark);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.hero .microcopy {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1rem;
}

/* Who It's For */
.who-for {
  background: var(--color-gray);
  padding: 4rem 1.5rem;
  text-align: center;
}

.who-for h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.who-for ul {
  list-style: disc;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* What I Help You With */
.what-i-do {
  padding: 5rem 1.5rem;
  background: #fff;
  text-align: center;
}

.what-i-do h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.feature-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  background: var(--color-gray);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  flex: 1 1 300px;
  text-align: left;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

/* CTA Section */
.cta {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
  background: #111;
  color: #eee;
  padding: 5rem 1.5rem;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-bottom: 1px solid #444;
  padding-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.faq-item p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-action {
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
  }

  .main-navigation .menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .feature-grid {
    flex-direction: column;
  }
}

/* Footer Layout */
.site-footer {
  background: #0A0A0A;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-top {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-cta-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-main {
  padding: 4rem 1.5rem;
  background: #111;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-branding {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #aaa;
}

.footer-navigation .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
  background: #0A0A0A;
  border-top: 1px solid #333;
  padding: 1.5rem 1.5rem;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: #888;
  margin: 0;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.footer-legal li a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: var(--color-primary);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* Process Section (SaaS-inspired) */
.process-section {
  background: #fefefe;
  padding: 5rem 1.5rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.process-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.process-content {
  flex: 1 1 500px;
}

.process-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.process-subtext {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.process-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #333;
}

.process-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.process-image {
  flex: 1 1 400px;
}

.process-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Free Guide Template */
.free-guide-page {
  background: #fff;
  color: var(--color-dark);
  padding: 5rem 0;
}

.free-guide-hero {
  padding: 4rem 1.5rem;
}

.guide-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.guide-content {
  flex: 1 1 500px;
}

.guide-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #000, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guide-content .subhead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.guide-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  color: #333;
}

.guide-benefits li {
  margin-bottom: 0.75rem;
}

.guide-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guide-input {
  flex: 1 1 300px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.guide-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 31, 180, 0.2);
}

.microcopy {
  font-size: 0.85rem;
  color: #888;
}

.guide-image {
  flex: 1 1 400px;
  text-align: center;
}

.guide-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .guide-layout {
    flex-direction: column;
    text-align: center;
  }

  .guide-form {
    flex-direction: column;
    align-items: center;
  }

  .guide-input {
    width: 100%;
  }
}