/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo h2 {
    color: #2563eb;
    font-size: 1.5rem;
    margin: 0;
}

/* Fixed Logo Bottom Right */
.fixed-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.fixed-logo-svg {
    width: 80px;
    height: 80px;
    display: block;
}

.fixed-logo-img {
    height: 80px;
    width: auto;
    border-radius: 4px;
    display: block;
    object-fit: contain;
    background: transparent;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fixed-logo-img[src=""],
.fixed-logo-img:not([src]) {
    display: none;
}

.fixed-logo-img:not([src*="synqgen-logo"]) {
    display: none;
}

/* Business Engage Logo - Bottom Left Corner */
.business-engage-logo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 2px solid #e0e0e0;
}

.business-engage-logo:hover {
    transform: scale(1.05);
}

.be-logo-img {
    height: 40px;
    width: auto;
    display: block !important;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
    max-width: none !important;
}

/* SynqGen Logo - Bottom Right Corner */
.synqgen-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 2px solid #e0e0e0;
}

.synqgen-logo:hover {
    transform: scale(1.05);
}

.synqgen-logo-img {
    height: 80px;
    width: auto;
    display: block !important;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
    max-width: none !important;
}

/* AI Decorations */
.ai-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    backdrop-filter: blur(5px);
}

.ai-graphic {
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Page header positioning */
.page-header {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ai-decoration {
        display: none;
    }
}

/* Contact Form Styles */
.contact-form-section {
    background: #f8fafc;
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: 12px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.form-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Contact method links */
.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* WhatsApp link styling */
.contact-details a[href*="wa.me"] {
    color: #25d366;
}

.contact-details a[href*="wa.me"]:hover {
    color: #128c7e;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .contact-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background-color: #f0f9ff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4c1d95 0%, #581c87 100%);
    color: white;
    padding: 5rem 0;
}

.hero-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    display: block;
    opacity: 1;
    background: transparent;
    visibility: visible;
}

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
    padding: 4rem 0;
}

.page-title {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e40af;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.content-section {
    padding: 4rem 0;
}

/* Featured Vision Section */
.featured-vision {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 6rem 0;
    color: white;
}

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

.vision-image {
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-image {
    text-align: center;
}

.vision-img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block !important;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 500px;
    background: none !important;
}

.vision-img:hover {
    transform: scale(1.02);
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Introduction Section */
.intro {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.intro-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    background-color: #e0f2fe;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

/* The Shift Section */
.shift {
    padding: 4rem 0;
    background-color: #fff;
}

.shift-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.shift-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.shift-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shift-icon svg {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.shift-arrow {
    font-size: 2rem;
    color: #2563eb;
    font-weight: bold;
}

/* Vibe Coding Section */
.vibe-coding {
    background-color: #f0f9ff;
    padding: 4rem 0;
}

.vibe-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.process-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-icon svg {
    color: #2563eb;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.2));
}

.process-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-arrow svg {
    color: #2563eb;
    filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.3));
}

.karpathy-quote {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e40af 100%);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.karpathy-quote::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #2563eb, #10b981);
    border-radius: 1.5rem;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.quote-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-icon svg {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.karpathy-quote blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: white;
    border: none;
    padding: 0;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.quote-text {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.author-name {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.main-quote {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.4em;
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.karpathy-quote .vibe-coding {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Ubuntu Section */
.ubuntu {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.ubuntu .section-title {
    color: white !important;
}

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

.ubuntu-quote h3 {
    font-size: 2.5rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.ubuntu-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-visual {
    display: flex;
    justify-content: center;
}

/* Vibe Example */
.vibe-example {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    max-width: 400px;
}

.example-input,
.example-output {
    margin-bottom: 1rem;
}

.example-input h4,
.example-output h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.example-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #2563eb;
    margin: 1rem 0;
}

/* Chef Analogy */
.chef-analogy {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.analogy-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.chef-comparison {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-item {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.comparison-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #2563eb;
    margin: 1rem 0;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Benefits */
.benefits {
    background-color: #f0f9ff;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Getting Started */
.getting-started {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Analogy Comparison */
.analogy-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.analogy-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.analogy-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

/* Workshop Curriculum */
.workshop-curriculum {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.workshop-curriculum ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workshop-curriculum li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.workshop-curriculum li:last-child {
    border-bottom: none;
}

/* Pricing Highlight */
.pricing-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.price-box {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-box h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.price-original {
    font-size: 1.2rem;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-discounted {
    font-size: 2.5rem;
    font-weight: bold;
    color: #059669;
    margin-bottom: 0.5rem;
}

.price-free {
    font-size: 2.5rem;
    font-weight: bold;
    color: #059669;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-payment {
    color: #475569;
    font-size: 0.9rem;
}

.location-info {
    background: #e0f2fe;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    text-align: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #475569;
    font-weight: 500;
    margin: 0;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4c1d95 0%, #581c87 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 3rem;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Workshop Details */
.workshop-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-item {
    text-align: center;
    padding: 1rem;
}

.detail-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #475569;
    margin: 0;
}

/* SynqGen Circles Features */
.circles-features,
.circles-benefits,
.how-it-works {
    margin: 3rem 0;
}

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

.feature-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #475569;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.step-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #475569;
    margin: 0;
}

/* Pricing Page Styles */
.pricing-hero {
    margin: 2rem 0;
}

.featured {
    border: 2px solid #2563eb;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.price-features {
    margin-top: 1.5rem;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.price-features li:last-child {
    border-bottom: none;
}

/* Payment Options */
.payment-options,
.workshop-schedule,
.value-proposition {
    margin: 3rem 0;
}

.payment-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-item,
.value-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.payment-icon,
.value-item i {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.value-item i {
    width: auto;
    height: auto;
    background: none;
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-item h4,
.value-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.payment-item p,
.value-item p {
    color: #475569;
    margin: 0;
}

/* Schedule Info */
.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.schedule-details h4 {
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.schedule-details p {
    color: #475569;
    margin: 0;
}

/* Banner Section */
.banner-section {
    margin: 3rem 0;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .banner-section {
        margin: 2rem 0;
    }
    
    .banner-image {
        max-height: 250px;
    }
}

/* Contact Page Styles */
.contact-hero {
    margin: 2rem 0;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #475569;
    margin: 0;
    font-weight: 500;
}

.contact-reasons,
.contact-expectations {
    margin: 3rem 0;
}

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

.reason-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.reason-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: #475569;
    margin: 0;
}

.expectations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expectation-item {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expectation-icon {
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.expectation-item h4 {
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.expectation-item p {
    color: #475569;
    margin: 0;
}

.contact-cta {
    background: #e0f2fe;
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 3rem 0;
}

.contact-cta h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 3rem 0;
    color: white;
}

.cta-section h3 {
    color: white !important;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-section p {
    color: white !important;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Workshop Overview */
.workshop-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e0f2fe;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
}

/* Curriculum */
.curriculum {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.week-module {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
}

.week-module h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.module-content ul {
    list-style: none;
    padding: 0;
}

.module-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.module-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Learning Outcomes */
.learning-outcomes {
    padding: 4rem 0;
    background: white;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.outcome-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

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

/* Community Transition */
.community-transition {
    background-color: #f0f9ff;
    padding: 4rem 0;
}

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

.transition-text ul {
    margin-top: 1rem;
}

.transition-text li {
    margin-bottom: 0.5rem;
}

.community-flow {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.flow-step {
    text-align: center;
    margin-bottom: 1rem;
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.flow-arrow {
    text-align: center;
    color: #2563eb;
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #475569;
}

.testimonial-author strong {
    color: #1e40af;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Ubuntu Intro */
.ubuntu-intro {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
}

.ubuntu-description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ubuntu-visual {
    display: flex;
    justify-content: center;
}

.circle-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.outer-circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.circle-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.circle-item:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.circle-item:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.circle-item:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

/* What are Circles */
.what-are-circles {
    padding: 4rem 0;
    background: white;
}

.circles-explanation {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.explanation-benefits {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.explanation-benefits ul {
    list-style: none;
    padding: 0;
}

.explanation-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.explanation-benefits li:last-child {
    border-bottom: none;
}

/* Circle Types */
.circle-types {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #2563eb;
}

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

.type-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.type-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.type-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Timeline */
.how-circles-work {
    padding: 4rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: calc(100% + 20px);
    background: #e2e8f0;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-icon {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

/* Circle Benefits */
.circle-benefits {
    background-color: #f0f9ff;
    padding: 4rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Success Stories */
.success-stories {
    padding: 4rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #22c55e;
}

.story-impact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.impact-label {
    color: #64748b;
    font-size: 0.9rem;
}

.impact-value {
    color: #22c55e;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Join CTA */
.join-cta,
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.join-cta h2,
.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.join-cta p,
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Pricing */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
    background: white;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

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

.pricing-header h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #1e40af;
}

.price-description {
    color: #64748b;
    font-size: 0.9rem;
}

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

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.pricing-features i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* Payment Options */
.payment-options {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-option {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Value Proposition */
.value-proposition {
    padding: 4rem 0;
    background: white;
}

.value-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.comparison-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #2563eb;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.comparison-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.total-cost {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e40af;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #2563eb;
}

.vs-divider {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    text-align: center;
}

/* ROI Calculator */
.roi-calculator {
    background-color: #f0f9ff;
    padding: 4rem 0;
}

.roi-examples {
    margin-top: 3rem;
}

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

.example-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.example-card h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.roi-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.roi-result span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.roi-result span:last-child {
    color: #22c55e;
    font-weight: bold;
}

/* Guarantees */
.guarantees {
    padding: 4rem 0;
    background: white;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

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

/* FAQ */
.faq,
.contact-faq {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.faq-list,
.faq-grid {
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #475569;
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-note i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.method-icon {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.method-info h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.method-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Quick Actions */
.quick-actions {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    margin: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

/* Office Hours */
.office-hours {
    padding: 4rem 0;
    background: white;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.hours-schedule {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #374151;
}

.time {
    color: #64748b;
}

.hours-note {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e0f2fe;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #3b82f6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .analogy-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-highlight {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .shift-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shift-arrow {
        transform: rotate(90deg);
    }

    .vibe-process {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .ubuntu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-text h2 {
        font-size: 2rem;
    }

    .vision-image {
        order: -1;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .analogy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshop-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .transition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .circles-explanation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        transform: rotate(90deg);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .circle-diagram {
        width: 250px;
        height: 250px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }

    .circle-item {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .example-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .business-engage-logo {
        bottom: 10px;
        left: 10px;
        padding: 6px;
    }

    .be-logo-img {
        height: 30px;
    }
}
