@charset "UTF-8";
:root {
  --primary: #E8562A;
  --primary-dark: #C43D16;
  --accent: #00B8A0;
  --bg: #FFFDF8;
  --bg-alt: #FFF6E8;
  --text: #1C2135;
  --text-muted: #58698A;
  --border: #F0DEC4;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(45,45,45,0.08);
  --shadow-md: 0 4px 28px rgba(45,45,45,0.13);
  --max-width: 1100px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

h4 {
  font-size: 1.0625rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

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

.btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 246, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.site-logo {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover {
  color: var(--primary);
}
.site-logo .logo-mark {
  color: var(--primary);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--text);
}
.site-nav a.btn {
  color: var(--white);
  margin-left: 0.375rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 5rem 0 0;
  text-align: center;
}
.hero .hero-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero .hero-title {
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero .hero-image {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero .hero-image img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
}

.stats-strip {
  background: linear-gradient(135deg, #E8562A 0%, #F5A623 100%);
  padding: 2.5rem 0;
}
.stats-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-strip .stat-number {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stats-strip .stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto;
}

.featured-workshop {
  background: var(--bg-alt);
  padding: 5rem 0;
}
.featured-workshop .workshop-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.featured-workshop .workshop-card-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-workshop .workshop-card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.featured-workshop .workshop-card-content .tag {
  display: inline-block;
  background: rgba(232, 86, 42, 0.1);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  width: fit-content;
}
.featured-workshop .workshop-card-content h3 {
  margin-bottom: 1rem;
}
.featured-workshop .workshop-card-content p {
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.featured-workshop .workshop-card-content a {
  margin-top: 0.625rem;
  width: fit-content;
}

.how-it-works {
  padding: 5.5rem 0;
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.how-it-works .step {
  padding: 2rem 1.25rem;
}
.how-it-works .step .step-number {
  width: 52px;
  height: 52px;
  background: rgba(232, 86, 42, 0.1);
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.how-it-works .step h3 {
  margin-bottom: 0.625rem;
}
.how-it-works .step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.for-whom {
  background: var(--bg-alt);
  padding: 5.5rem 0;
}
.for-whom .audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.for-whom .audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.for-whom .audience-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.for-whom .audience-card h3 {
  margin-bottom: 0.5rem;
}
.for-whom .audience-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.testimonials {
  padding: 5.5rem 0;
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials .testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
}
.testimonials .testimonial-card blockquote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  border: none;
  padding: 0;
}
.testimonials .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonials .testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.testimonials .testimonial-card .author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}
.testimonials .testimonial-card .author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cta-section {
  background: linear-gradient(135deg, #00B8A0 0%, #006B8F 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section .cta-inner {
  max-width: 540px;
  margin: 0 auto;
}
.cta-section .cta-inner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-section .cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.cta-section .btn-cta {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.cta-section .btn-cta:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
  color: var(--primary);
}

.about-page .about-hero {
  padding: 5rem 0 3rem;
  max-width: 700px;
}
.about-page .about-hero .label {
  display: block;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.about-page .about-hero h1 {
  margin-bottom: 1.25rem;
}
.about-page .about-hero .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-page .about-story {
  padding: 2rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-page .about-story .story-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about-page .about-story .story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-page .about-story .story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-page .values {
  background: var(--bg-alt);
  padding: 5rem 0;
}
.about-page .values h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.about-page .values .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-page .values .value-item {
  text-align: center;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
}
.about-page .values .value-item .value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.about-page .values .value-item h3 {
  margin-bottom: 0.5rem;
}
.about-page .values .value-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.features-page .features-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}
.features-page .features-hero h1 {
  margin-bottom: 1rem;
}
.features-page .features-hero p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto;
}
.features-page .features-grid {
  padding: 1rem 0 5rem;
}
.features-page .feature-group {
  margin-bottom: 4rem;
}
.features-page .feature-group .feature-group-header {
  margin-bottom: 1.75rem;
}
.features-page .feature-group .feature-group-header .pill {
  display: inline-block;
  background: rgba(232, 86, 42, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}
.features-page .feature-group .feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.features-page .feature-group .feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
}
.features-page .feature-group .feature-item .feature-icon {
  font-size: 1.625rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.features-page .feature-group .feature-item h3 {
  margin-bottom: 0.5rem;
}
.features-page .feature-group .feature-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-page {
  padding: 5rem 0;
}
.pricing-page .pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pricing-page .pricing-header h1 {
  margin-bottom: 0.875rem;
}
.pricing-page .pricing-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto;
}
.pricing-page .pricing-note {
  background: rgba(232, 86, 42, 0.06);
  border: 1px solid rgba(232, 86, 42, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.875rem 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-page .pricing-note h3 {
  margin-bottom: 0.5rem;
}
.pricing-page .pricing-note p {
  color: var(--text-muted);
}
.pricing-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.pricing-page .pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.pricing-page .pricing-card .card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pricing-page .pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.pricing-page .pricing-card .price {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 1rem 0;
  line-height: 1;
}
.pricing-page .pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: inherit;
}
.pricing-page .pricing-card > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.pricing-page .pricing-card ul {
  margin-bottom: 1.75rem;
}
.pricing-page .pricing-card ul li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 0.35rem 0 0.35rem 1.375rem;
  position: relative;
}
.pricing-page .pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.pricing-page .pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.pricing-page .pricing-card.featured .card-label {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-page .pricing-card.featured h3 {
  color: var(--white);
}
.pricing-page .pricing-card.featured .price {
  color: var(--white);
}
.pricing-page .pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-page .pricing-card.featured > p {
  color: rgba(255, 255, 255, 0.8);
}
.pricing-page .pricing-card.featured ul li {
  color: rgba(255, 255, 255, 0.85);
}
.pricing-page .pricing-card.featured ul li::before {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-page .pricing-card.featured .btn {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.pricing-page .pricing-card.featured .btn:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}
.pricing-page .pricing-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.blog-page {
  padding: 5rem 0;
}
.blog-page .blog-header {
  margin-bottom: 3rem;
}
.blog-page .blog-header h1 {
  margin-bottom: 0.625rem;
}
.blog-page .blog-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.blog-page .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.blog-page .post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-page .post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-page .post-card .post-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-page .post-card .post-card-content {
  padding: 1.5rem;
}
.blog-page .post-card .post-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.blog-page .post-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
.blog-page .post-card h2 a {
  color: var(--text);
}
.blog-page .post-card h2 a:hover {
  color: var(--primary);
}
.blog-page .post-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.blog-page .empty-blog {
  padding: 4rem 0;
  text-align: center;
  color: var(--text-muted);
}
.blog-page .empty-blog p {
  font-size: 1.0625rem;
}

.post {
  padding: 5rem 0;
}
.post .post-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.post .post-header h1 {
  margin-bottom: 1rem;
}
.post .post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.post .post-meta .post-author {
  margin-left: 0.25rem;
}
.post .post-body {
  max-width: 720px;
}
.post .post-body h2, .post .post-body h3, .post .post-body h4 {
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
}
.post .post-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.post .post-body ul, .post .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}
.post .post-body li {
  margin-bottom: 0.4rem;
}
.post .post-body img {
  border-radius: var(--radius);
  margin: 2rem 0;
}
.post .post-body blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.post .post-body a {
  text-decoration: underline;
  text-decoration-color: rgba(232, 86, 42, 0.4);
}

.site-footer {
  background: var(--text);
  padding: 4.5rem 0 2rem;
}
.site-footer .site-logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.site-footer .site-logo:hover {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .site-logo .logo-mark {
  color: var(--primary);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer .footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.6;
}
.site-footer .footer-links h4 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
}
.site-footer .footer-links ul li {
  margin-bottom: 0.6rem;
}
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}
.site-footer .footer-links a:hover {
  color: var(--white);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .testimonials .testimonial-grid,
  .pricing-page .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-header {
    position: relative;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: 1.125rem;
    box-shadow: 0 4px 16px rgba(45, 45, 45, 0.08);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .hero {
    padding: 3.5rem 0 0;
  }
  .hero .hero-image img {
    aspect-ratio: 16/7;
  }
  .stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  .featured-workshop .workshop-card {
    grid-template-columns: 1fr;
  }
  .featured-workshop .workshop-card .workshop-card-content {
    padding: 2rem;
  }
  .featured-workshop .workshop-card .workshop-card-image img {
    min-height: 220px;
  }
  .how-it-works .steps {
    grid-template-columns: 1fr;
  }
  .for-whom .audience-grid {
    grid-template-columns: 1fr;
  }
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .about-page .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-page .values .values-grid {
    grid-template-columns: 1fr;
  }
  .features-page .features-grid .feature-group .feature-list {
    grid-template-columns: 1fr;
  }
  .blog-page .posts-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand p {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-large {
    width: 100%;
  }
  .stats-strip .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=main.css.map */