/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #6366f1;      /* Indigo */
    --secondary-color: #8b5cf6;    /* Purple */
    --accent-color: #ec4899;       /* Pink */
    --text-dark: #1f2937;          /* Dark gray */
    --text-medium: #4b5563;        /* Medium gray */
    --text-light: #6b7280;         /* Light gray */
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --max-width: 1200px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 100px;
    text-align: center;
}

.logo-section {
    margin-bottom: 20px;
}

.site-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s;
}

.hero-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheading {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.app-preview {
    margin: 48px auto;
    max-width: 100%;
}

.before-after-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 900px;
}

.ba-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.ba-before,
.ba-after {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ba-arrow {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.ba-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-top: 8px;
    text-align: center;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.app-preview .feature-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 100px 40px;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
}

.cta-section {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-ios {
    background-color: #000000;
    color: white;
}

.cta-android {
    background-color: white;
    color: #3ddc84;
}

.app-icon {
    width: 24px;
    height: 24px;
}

.social-proof-quick {
    margin-top: 48px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1rem;
    font-weight: 500;
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.problem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Transformation Section
   =================================== */
.transformation-section {
    padding: 100px 0;
    background-color: white;
}

.transformation-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    font-size: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--background-alt);
    padding: 32px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Results Showcase Section
   =================================== */
.results-showcase-section {
    padding: 100px 0;
    background-color: white;
}

.results-showcase-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.result-item {
    text-align: center;
}

.result-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.result-single {
    position: relative;
}

.result-single img {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.result-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-badge.after {
    background: var(--primary-color);
}

.result-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-text strong {
    color: var(--text-dark);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.feature-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-group.reverse {
    direction: rtl;
}

.feature-group.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-content > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.feature-visual {
    width: 100%;
}

.feature-placeholder {
    background: var(--background-alt);
    border: 2px dashed var(--border-color);
    padding: 100px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    padding: 100px 0;
    background-color: white;
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

/* ===================================
   Procedures Section (SEO-rich)
   =================================== */
.procedures-section {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.procedures-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-links-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0 60px;
}

.featured-blog-link {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.featured-blog-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.blog-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.featured-blog-link h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.featured-blog-link p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

.procedures-category {
    margin-bottom: 60px;
}

.procedures-category h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.procedure-card {
    display: block;
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.procedure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
    cursor: pointer;
}

.procedure-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.procedure-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   About / Founder Section
   =================================== */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.founder-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image {
    width: 200px;
}

.founder-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.founder-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.founder-story strong {
    color: var(--text-dark);
}

.founder-signature {
    font-style: italic;
    color: var(--text-light);
    margin-top: 32px;
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.privacy-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 24px;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ===================================
   Blog Pages Styling
   =================================== */
.blog-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.blog-nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.blog-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.blog-nav-links a:hover {
    color: var(--primary-color);
}

.nav-back {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-back:hover {
    color: var(--secondary-color);
}

.blog-article {
    padding: 60px 0;
    background: white;
}

.blog-container {
    max-width: 800px;
}

.blog-article h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
}

.blog-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
}

.blog-ba-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-arrow {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.blog-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 16px;
}

.blog-article h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-article h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.blog-article p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.blog-benefits,
.blog-steps,
.blog-tips {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.blog-benefits li,
.blog-steps li,
.blog-tips li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-benefits li:before,
.blog-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.blog-steps {
    counter-reset: step-counter;
}

.blog-steps li {
    counter-increment: step-counter;
}

.blog-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.blog-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 32px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.blog-highlight h3 {
    color: white;
    margin-top: 0;
}

.blog-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.blog-cta-early,
.blog-cta-final {
    background: var(--background-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 48px 0;
    border: 2px solid var(--primary-color);
}

.blog-cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.blog-cta-early h3,
.blog-cta-final h3 {
    margin-top: 0;
    font-size: 1.75rem;
}

.blog-cta-final h3,
.blog-cta-final p {
    color: white;
}

.blog-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.comparison-item {
    background: var(--background-alt);
    padding: 24px;
    border-radius: var(--border-radius);
}

.comparison-item h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.comparison-item p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.blog-testimonial {
    background: var(--background-alt);
    padding: 32px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
    font-style: italic;
}

.blog-testimonial p:first-child {
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
}

.blog-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    transition: all 0.2s;
}

.related-links a:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 640px) {
    .blog-nav-links {
        gap: 12px;
    }
    
    .blog-nav-links a {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
    
    .blog-article h1 {
        font-size: 2rem;
    }
    
    .blog-hero-image {
        flex-direction: column;
        padding: 20px;
    }
    
    .blog-ba-img {
        width: 150px;
        height: 190px;
    }
    
    .blog-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 60px 0 40px;
    background-color: var(--text-dark);
    color: white;
    text-align: center;
}

.footer p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .feature-group {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-group.reverse {
        direction: ltr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .founder-image {
        margin: 0 auto;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .site-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-nav {
        gap: 12px;
    }
    
    .hero-nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .before-after-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ba-before,
    .ba-after {
        width: 100px;
        height: 100px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .problem-section,
    .transformation-section,
    .results-showcase-section,
    .testimonials-section,
    .features-section,
    .procedures-section,
    .about-section,
    .final-cta-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .problems-grid,
    .how-it-works,
    .benefits-grid,
    .results-grid,
    .testimonials-grid,
    .procedures-grid {
        grid-template-columns: 1fr;
    }
    
    .result-single img {
        width: 120px;
        height: 150px;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    .feature-placeholder {
        padding: 60px 20px;
        font-size: 1.5rem;
    }
}

