/* 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: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* MOSTECH Color Variables */
:root {
    --primary-color: #FF6B35;
    --primary-light: #FF8A65;
    --primary-dark: #e55a2b;
    --secondary-color: #1E3A5F;
    --secondary-dark: #152B42;
    --accent-color: #27AE60;
    --text-primary: #1E3A5F;
    --text-secondary: #6b7280;
    --background-light: #F8F9FA;
    --background-dark: #1E3A5F;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --red: #ef4444;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    --gradient-ai: linear-gradient(135deg, #FF6B35 0%, #FF8A65 50%, #1E3A5F 100%);
    --gradient-navy: linear-gradient(135deg, #1E3A5F 0%, #152B42 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

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

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary.friendly {
    border-radius: 15px;
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-menu .cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu .cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Conversational */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(255, 107, 53, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.chat-bubble {
    background: var(--gradient);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 20px 20px 20px 5px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    animation: bounce-in 0.6s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-bubble .emoji {
    font-size: 1.5rem;
}

@keyframes bounce-in {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-description em {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.truth-bomb {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bomb-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bomb-text {
    line-height: 1.5;
}

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

/* Hero Visual - Conversation Flow */
.conversation-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.chat-message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    animation: slide-in 0.6s ease;
}

.chat-message.user {
    background: #e5e7eb;
    color: var(--text-primary);
    align-self: flex-end;
    border-radius: 20px 20px 5px 20px;
    animation-delay: 0.2s;
}

.chat-message.ai {
    background: var(--gradient);
    color: white;
    align-self: flex-start;
    border-radius: 20px 20px 20px 5px;
    animation-delay: 0.4s;
}

@keyframes slide-in {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--background-light);
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 5px;
}

.story-quote {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    font-style: italic;
}

.story-result {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.result-tag {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.result-income {
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.story-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-bubble {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    max-width: 500px;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-example {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-color);
}

.journey-reality-check {
    margin-top: 3rem;
}

.reality-bubble {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-info {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-duration {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-note {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
}

/* Dreams Section - Persona Cards */
.dreams-section {
    padding: 80px 0;
    background: var(--background-light);
}

.dreams-header {
    text-align: center;
    margin-bottom: 4rem;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.persona-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transition: left 0.3s ease;
}

.persona-card:hover::before {
    left: 0;
}

.persona-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.persona-thoughts {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    font-style: italic;
    position: relative;
}

.persona-thoughts::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.persona-solution {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.dreams-encouragement {
    text-align: center;
    margin-top: 3rem;
}

.encouragement-bubble {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    max-width: 600px;
}

.motivational-quote {
    background: var(--gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 500;
}

/* Investment Section */
.investment-section {
    padding: 80px 0;
}

.investment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.honest-pricing {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.comparison-card.old-way {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
}

.comparison-card.mostech-way {
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid var(--primary-color);
}

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

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

.total-cost {
    background: #374151;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
}

.total-cost.highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8660 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 8px rgba(0, 0, 0, 0.3) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none !important;
    text-decoration: none !important;
    display: block;
    text-align: center;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

/* More specific selector to ensure it overrides .highlight */
.comparison-card .total-cost.highlight,
a.total-cost.highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8660 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.total-cost.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b 0%, #FF6B35 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-badge.premium {
    background: var(--gradient);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.package-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-reality {
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.custom-explanation {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.investment-reality {
    margin-top: 3rem;
}

.reality-check {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.faq-simple {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

/* Chat Section */
.chat-section {
    padding: 80px 0;
    background: var(--background-light);
}

.chat-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chat-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.chat-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.intro-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

.intro-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 8px;
}

.intro-text {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chat-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.friendly-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.friendly-form input,
.friendly-form select,
.friendly-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.friendly-form input:focus,
.friendly-form select:focus,
.friendly-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.friendly-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.alternative-contact {
    margin-top: 3rem;
    text-align: center;
}

.contact-options {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.contact-btn.email {
    background: var(--primary-color);
    color: white;
}

.contact-btn.email:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.response-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .story-grid,
    .journey-steps,
    .persona-grid,
    .pricing-packages {
        grid-template-columns: 1fr;
    }

    .price-comparison {
        grid-template-columns: 1fr;
    }

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

    .timeline-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .story-card,
    .persona-card,
    .package-card {
        padding: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .chat-bubble {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Interactive Elements */
.persona-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.story-card:hover {
    transform: translateY(-8px);
}

.step-item:hover .step-number {
    transform: scale(1.1);
    background: var(--gradient-ai);
}

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 2rem 0;
        border-radius: 0 0 15px 15px;
        display: flex !important;
    }

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

    .nav-menu a {
        padding: 1.2rem;
        display: block;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Typing cursor animation */
.typing-cursor {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: normal;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Medium screen responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-packages .package-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
} 