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

:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-light: #f9fafb;
    --background-section: #f8fafc;
    --border-color: #e5e7eb;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn--secondary {
    background: var(--secondary-color);
    color: white;
}

.btn--secondary:hover {
    background: #d97706;
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--font-size-xl);
}

.nav__logo-icon {
    margin-right: var(--space-sm);
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    gap: var(--space-xl);
}

.nav__link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav__actions {
    display: flex;
    gap: var(--space-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

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

/* Hero Section */
.hero {
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-4xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero__highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.hero__features {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.feature-badge__icon {
    margin-right: var(--space-sm);
    font-size: var(--font-size-lg);
}

.feature-badge__text {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup {
    background: #1f2937;
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    margin-left: auto;
}

.phone-mockup__screen {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.call-interface {
    padding: var(--space-lg);
}

.call-interface__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.call-interface__status {
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.call-interface__time {
    color: var(--text-secondary);
    font-weight: 500;
}

.call-interface__caller {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.caller-avatar {
    width: 50px;
    height: 50px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-size: var(--font-size-xl);
}

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

.caller-number {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.message {
    background: var(--background-light);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.message--ai {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    border-left: 4px solid var(--primary-color);
}

.message__label {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

.message__text {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--background-section);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
}

.step {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step__icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    display: block;
    color: var(--primary-color);
}

.step__title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.step__feature {
    text-align: left;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    line-height: 1.6;
}

.step__feature strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features */
.features {
    padding: var(--space-4xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.feature-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
    color: var(--primary-color);
}

.feature-card__title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.feature-card__list {
    list-style: none;
}

.feature-card__list li {
    margin-bottom: var(--space-md);
    line-height: 1.6;
    position: relative;
    padding-left: var(--space-lg);
}

.feature-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.feature-card__list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.why-choose {
    background: var(--background-light);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.why-choose__title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.benefit {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.benefit__icon {
    font-size: var(--font-size-xl);
    margin-right: var(--space-md);
    flex-shrink: 0;
    color: var(--accent-color);
}

.benefit__text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Use Cases */
.use-cases {
    padding: var(--space-4xl) 0;
    background: var(--background-section);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.use-case {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
    color: var(--primary-color);
}

.use-case__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.use-case__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.use-case__subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-style: italic;
}

/* Testimonials */
.testimonials {
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.testimonial {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial__content {
    padding: var(--space-2xl);
}

.testimonial__quote {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    font-style: italic;
    position: relative;
}

.testimonial__quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

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

.testimonial__avatar {
    width: 60px;
    height: 60px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-size: var(--font-size-2xl);
}

.testimonial__name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.testimonial__title {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* CTA */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.cta__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.cta__subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.getting-started {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-3xl);
    backdrop-filter: blur(10px);
}

.getting-started__title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.getting-started__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    text-align: left;
}

.getting-started__step {
    display: flex;
    align-items: flex-start;
}

.getting-started__number {
    background: var(--secondary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.getting-started__content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.contact-info__details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.contact-info__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.contact-info__link:hover {
    opacity: 0.8;
}

.contact-info__separator {
    opacity: 0.7;
}

.contact-info__hours {
    opacity: 0.8;
    font-size: var(--font-size-sm);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.footer__logo-icon {
    margin-right: var(--space-sm);
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
}

.footer__tagline {
    opacity: 0.8;
    font-style: italic;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
}

.footer__title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--secondary-color);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--space-sm);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__list a:hover {
    color: white;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-right: var(--space-md);
}

.language-switcher__current {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.language-switcher__current:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.language-switcher__flag {
    font-size: var(--font-size-lg);
}

.language-switcher__label {
    color: var(--text-primary);
}

.language-switcher__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.language-switcher__dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher__option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    transition: background-color 0.2s ease;
}

.language-switcher__option:hover {
    background: var(--background-light);
}

.language-switcher__option:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.language-switcher__option:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .nav__menu,
    .nav__actions {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .features-grid,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .getting-started__steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info__details {
        flex-direction: column;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .phone-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
} 