/*
Theme Name: ADDIE Architect  
Theme URI: https://addiearchitect.com
Author: The ADDIE Architect
Description: Custom landing page theme
Version: 1.1.1
*/

/* ================================
   ADDIE Architect Landing Page Styles
   Premium Design for Instructional Designers
   ================================ */

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

:root {
    /* Primary Colors */
    --primary: #0E7490;
    --primary-dark: #0C5A72;
    --primary-light: #06B6D4;

    /* Accent Colors */
    --accent: #F97316;
    --accent-dark: #EA580C;

    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-tertiary: var(--gray-600);

    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: var(--gray-50);
    --bg-accent: #FFF7ED;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* ================================
   Containers & Layout
   ================================ */

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

section {
    padding: var(--section-padding-mobile) 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-header p.large {
    font-size: 1.25rem;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ================================
   Navigation
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text-nav {
    display: none;
}

@media (min-width: 768px) {
    .logo-text-nav {
        display: inline;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
    padding: 2rem;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.hero-logo {
    margin: 0.5rem auto 2rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-logo img {
    width: 280px;
    height: auto;
    max-width: 100%;
    display: inline-block;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.hero-description p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.hero-trust svg {
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* ================================
   Pain Points Section
   ================================ */

.pain-points {
    background: var(--bg-secondary);
}
.pain-points .section-header {    text-align: center;}

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

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.pain-problem {
    color: var(--accent);
}

.pain-solution {
    color: var(--primary);
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

/* ================================
   Solution Section
   ================================ */

.solution {
    background: white;
}

.system-anatomy {
    background: var(--bg-accent);
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    margin-bottom: 4rem;
    text-align: center;
}

.system-anatomy h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.anatomy-item {
    text-align: center;
}

.anatomy-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.anatomy-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.anatomy-item p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0;
}

.anatomy-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* Categories */
.categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.category:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    cursor: pointer;
}

.category-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.category-header h3 {
    margin-bottom: 0.25rem;
}

.category-header p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.category-content {
    padding: 2rem;
}

.system-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.system-list li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.system-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.category-outcome {
    background: var(--bg-accent);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    margin-bottom: 0;
}

/* ================================
   Benefits Section
   ================================ */

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

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-before,
.benefit-after,
.benefit-impact {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.benefit-before {
    background: #FEE2E2;
    border-left: 3px solid #EF4444;
}

.benefit-after {
    background: #D1FAE5;
    border-left: 3px solid #10B981;
}

.benefit-impact {
    background: var(--bg-accent);
    border-left: 3px solid var(--accent);
}

/* ================================
   Case Studies Section
   ================================ */

.case-studies {
    background: white;
}

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

.case-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.case-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-card h3 {
    margin-bottom: 1.5rem;
}

.case-section {
    margin-bottom: 1.5rem;
}

.case-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.case-section ul {
    list-style: none;
    padding-left: 0;
}

.case-section li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.case-section li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.case-lesson {
    background: var(--accent);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

/* ================================
   Included Section
   ================================ */

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

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

.included-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
}

.included-main h3 {
    color: white;
    margin-bottom: 1rem;
}

.included-main ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.included-main li {
    padding-left: 1.5rem;
    position: relative;
}

.included-main li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-item h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.included-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.included-item li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.included-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ================================
   Pricing Section
   ================================ */

.pricing {
    background: white;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 3px solid var(--primary);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.price-period {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-breakdown {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-breakdown ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.pricing-breakdown li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.pricing-includes {
    margin-bottom: 2rem;
}

.pricing-includes h4 {
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-includes li {
    line-height: 1.7;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Upsell Hint */
.upsell-hint {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-accent);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--accent);
}

.upsell-hint h3 {
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.upsell-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.upsell-box h4 {
    margin-bottom: 1rem;
}

.upsell-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.upsell-box li {
    padding-left: 1.5rem;
    position: relative;
}

.upsell-box li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.upsell-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* ================================
   FAQ Section
   ================================ */

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

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
}

/* ================================
   Final CTA Section
   ================================ */

.final-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

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

.cta-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-content .btn {
    margin-bottom: 1rem;
}

.cta-guarantee {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    justify-content: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: none;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* ================================
   Responsive Design
   ================================ */

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

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    section {
        padding: var(--section-padding) 0;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-logo img {
        width: 280px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-main {
        grid-column: 1 / -1;
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links,
    .footer-legal {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-logo img {
        width: 350px;
    }

    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .included-main {
        grid-column: span 1;
    }
}

/* ================================
   Animations
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ================================
   Page Template Styles
   ================================ */

.page-content {
    background: var(--bg-primary);
}

.page-content .container {
    padding: 0 1.5rem;
}

.page-content .entry-content {
    line-height: 1.8;
}

.page-content .entry-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-content .entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-content .entry-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.page-content .entry-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.page-content .entry-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content .entry-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

.page-content .entry-content a:hover {
    color: var(--primary-dark);
}

.page-content .entry-content strong {
    font-weight: 600;
    color: var(--text-primary);
}
