html {
  height: 100%;
  width: 100%;
}

:root {
  --brand-primary: #00796B;
  --brand-accent: #00C853;
  --brand-bg: #FAFAFA;
  --brand-surface: #ffffff;
  --brand-charcoal: #263238;
  --brand-muted: #607d8b;
  --brand-border: #e0e0e0;

  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  --section-padding: 4rem;
  --section-padding-mobile: 2.5rem;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--brand-charcoal);
  background: var(--brand-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

li {
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.site-header {
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 70px;
  }
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.95rem;
  color: var(--brand-muted);
  transition: color 0.2s ease;
  font-weight: 500;
}

nav a:hover {
  color: var(--brand-primary);
}

@media (max-width: 640px) {
  nav {
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.85rem;
  }
}

.hero {
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.08),
      rgba(0, 200, 83, 0.05));
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .hero {
    padding: var(--section-padding-mobile) 0;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--brand-muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--brand-charcoal);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 121, 107, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-image {
    order: -1;
  }
}

.section {
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}

.section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--brand-charcoal);
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 1.6rem;
  }
}

.section p {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.section-muted {
  color: var(--brand-muted);
  margin-bottom: 2.5rem;
}

.who-section {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.section-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-cards {
  background: var(--brand-bg);
}

.section-cards .cards {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .section-cards .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--brand-surface);
  border-radius: 0.75rem;
  padding: 0;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 121, 107, 0.12);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--brand-bg);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  padding: 1.5rem 1.5rem 0 1.5rem;
  color: var(--brand-charcoal);
}

.card p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card .text-link {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--brand-primary);
  color: #ffffff;
}

.btn.primary:hover {
  background: #00695c;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.25);
}

.btn.secondary {
  background: var(--brand-surface);
  color: var(--brand-charcoal);
  border-color: var(--brand-border);
}

.btn.secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn.small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn.secondary.small {
  background: #00796B;
  color: #ffffff;
  border-color: #00796B;
  font-weight: 600;
}

.btn.secondary.small:hover {
  background: #00695c;
  border-color: #00695c;
  color: #ffffff;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--brand-accent);
}

.contact-block {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  text-align: center;
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .contact-block {
    padding: var(--section-padding-mobile) 0;
  }
}

.contact-block h2 {
  margin-bottom: 1.25rem;
}

.contact-block p {
  margin: 0 auto 1rem;
  max-width: 700px;
}

.contact-block a {
  color: var(--brand-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-block a:hover {
  color: var(--brand-accent);
}

.site-footer {
  border-top: 1px solid var(--brand-border);
  background: var(--brand-surface);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-inner a {
  color: var(--brand-muted);
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--brand-primary);
}

.story-section {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.problem-section {
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.03),
      rgba(0, 200, 83, 0.02));
}

.problem-list {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--brand-surface);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0.5rem;
}

.problem-list p {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--brand-charcoal);
}

.problem-climax {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brand-primary);
}

.highlight-text {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 121, 107, 0.05);
  border-radius: 0.5rem;
  font-size: 1.1rem;
}

.highlight-text strong {
  color: var(--brand-primary);
  font-size: 1.15rem;
}

.benefits-section {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-box {
  padding: 2rem;
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.03),
      rgba(0, 200, 83, 0.02));
  border-left: 3px solid var(--brand-accent);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-box:hover {
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.06),
      rgba(0, 200, 83, 0.04));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.08);
}

.benefit-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.benefit-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-charcoal);
}

.transformation-box {
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  padding: 2.5rem;
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.05),
      rgba(0, 200, 83, 0.03));
  border-radius: 0.75rem;
  border: 2px solid var(--brand-primary);
}

@media (max-width: 968px) {
  .transformation-box {
    margin-top: 3rem;
  }
}

.transformation-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.transformation-box > p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.transformation-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.transformation-item {
  font-size: 1.05rem;
  line-height: 1.6;
}

.transformation-item strong {
  color: var(--brand-charcoal);
  font-weight: 600;
}

.qualifier-section {
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.05),
      rgba(0, 200, 83, 0.03));
}

.qualifier-section h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--brand-charcoal);
  text-align: center;
}

.qualifier-list {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.qualifier-item {
  padding: 1.5rem;
  background: var(--brand-surface);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.qualifier-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--brand-charcoal);
}

.qualifier-cta {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-section {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.calendar-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.calendar-intro {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--brand-muted);
}

.savvycal-container {
  min-height: 150px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: var(--brand-bg);
  border-radius: 0.75rem;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .savvycal-container {
    padding: 0;
    min-height: 175px;
  }
}

.contact-details-section {
  background: var(--brand-bg);
}

.contact-details-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: var(--brand-surface);
  border-radius: 0.75rem;
  border: 1px solid var(--brand-border);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 121, 107, 0.12);
  border-color: var(--brand-primary);
}

.contact-method h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.contact-method p {
  margin: 0;
}

.contact-method a {
  color: var(--brand-charcoal);
  font-weight: 500;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-method a:hover {
  color: var(--brand-primary);
}

.privacy-content {
  max-width: 800px;
  margin: 2rem 0;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-charcoal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-content a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.privacy-content a:hover {
  color: #00695c;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-charcoal);
  color: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner-content a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner-content a:hover {
  color: var(--brand-accent);
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-banner-buttons {
    align-self: center;
  }
  
}

.blog-header {
  background: linear-gradient(135deg,
      rgba(0, 121, 107, 0.08),
      rgba(0, 200, 83, 0.05));
  text-align: center;
}

.blog-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand-charcoal);
}

.blog-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.1rem;
}

.blog-list-section {
  background: var(--brand-bg);
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--brand-surface);
  border-radius: 0.75rem;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 121, 107, 0.12);
  transform: translateY(-4px);
}

.blog-card-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.blog-date {
  color: var(--brand-muted);
}

.blog-category {
  color: var(--brand-primary);
  font-weight: 500;
}

.blog-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: var(--brand-charcoal);
  transition: color 0.2s ease;
}

.blog-card h2 a:hover {
  color: var(--brand-primary);
}

.blog-card p {
  color: var(--brand-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-article {
  padding: var(--section-padding) 0;
  background: #fff;
}

@media (max-width: 768px) {
  .blog-article {
    padding: var(--section-padding-mobile) 0;
  }
}

.blog-article .container {
  max-width: 720px;
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--brand-primary);
}

.article-header .blog-meta {
  margin-bottom: 1.25rem;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--brand-charcoal);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.85rem;
  }
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.article-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--brand-charcoal);
  margin-bottom: 2.5rem;
  font-weight: 500;
  border-left: 4px solid var(--brand-primary);
  padding-left: 1.25rem;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--brand-charcoal);
  position: relative;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-content ul {
  margin: 1.25rem 0 2rem 1.5rem;
}

.article-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.article-content li strong {
  color: var(--brand-charcoal);
}

.article-cta {
  background: linear-gradient(135deg, #f0f9f7 0%, #e8f5f2 100%);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta p {
  margin-bottom: 1rem;
}

.article-contact-links {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-contact-links a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-contact-links a:hover {
  color: #00695c;
}

.article-author {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--brand-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author p {
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.article-author strong {
  color: var(--brand-charcoal);
  font-size: 1.1rem;
}

.article-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-border);
}

.reviews-section {
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--brand-primary);
  display: flex;
  flex-direction: column;
}

.review-content {
  flex: 1;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-charcoal);
  margin-bottom: 1rem;
}

.review-content p:last-child {
  margin-bottom: 0;
}

.review-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author strong {
  color: var(--brand-charcoal);
  font-size: 1rem;
}

.review-author span {
  color: var(--brand-muted);
  font-size: 0.9rem;
}
