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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #4A90E2;
    padding: 15px 0;
}

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

.nav-brand {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.nav-right {
    color: white;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: #4A90E2;
    padding: 60px 0;
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.hero-email-input, .cta-email-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    flex-grow: 1;
}
.cta-button {
    text-align: center;
	display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}

.btn-white {
    background: white;
    color: #4A90E2;
}

.btn-orange {
    background: #FF8C42;
    color: white;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 180px;
    height: 320px;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.hand-holding {
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 80px;
    height: 120px;
}

.hand {
    width: 60px;
    height: 80px;
    background: #D4A574;
    border-radius: 30px 30px 15px 15px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.phone-in-hand {
    width: 30px;
    height: 50px;
    background: #333;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    right: 25px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chrome-icon {
    background: #4285F4;
}

.chrome-icon::after {
    content: '';
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.gmail-icon {
    background: #EA4335;
}

.gmail-icon::after {
    content: '';
    width: 40px;
    height: 25px;
    background: white;
    border-radius: 3px;
    position: absolute;
}

.notes-icon {
    background: #FBBC05;
}

.notes-icon::after {
    content: '';
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 3px;
    position: absolute;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.cta-button {
    text-align: center;
}

/* App Section */
.app-section {
    padding: 80px 0;
    text-align: center;
}

.app-section h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
}

.app-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.app-phone {
    margin: 60px 0;
}

.dark-phone {
    width: 200px;
    height: 360px;
    background: #2C3E50;
    border-radius: 25px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.dark-screen {
    width: 100%;
    height: 100%;
    background: #34495E;
    border-radius: 15px;
    position: relative;
}

.app-content {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: #3498DB;
    border-radius: 5px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-1 {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjNEE5MEUyIi8+CjxjaXJjbGUgY3g9IjUwIiBjeT0iMzUiIHI9IjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjAgODBDMjAgNjcuODUgMzIuODUgNTUgNTAgNTVTODAgNjcuODUgODAgODBIMjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
    background-color: #4A90E2;
}

.photo-2 {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjRkY4QzQyIi8+CjxjaXJjbGUgY3g9IjUwIiBjeT0iMzUiIHI9IjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjAgODBDMjAgNjcuODUgMzIuODUgNTUgNTAgNTVTODAgNjcuODUgODAgODBIMjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
    background-color: #FF8C42;
}

.photo-3 {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjMzRBODUzIi8+CjxjaXJjbGUgY3g9IjUwIiBjeT0iMzUiIHI9IjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjAgODBDMjAgNjcuODUgMzIuODUgNTUgNTAgNTVTODAgNjcuODUgODAgODBIMjBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
    background-color: #34A853;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

.team-member p {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-twitter {
    background: #1DA1F2;
    color: white;
}

.social-twitter:hover {
    background: #0d8bd9;
}

.social-facebook {
    background: #4267B2;
    color: white;
}

.social-facebook:hover {
    background: #365899;
}

.social-linkedin {
    background: #0077B5;
    color: white;
}

.social-linkedin:hover {
    background: #005885;
}

.cta-button {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-email-input,
.hero-email-input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 300px;
    font-family: inherit;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team .btn {
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 60px;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input.full-width {
    margin-bottom: 20px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row input {
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .app-section h2,
    .contact h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-left h1 {
        font-size: 24px;
    }
    
    .phone-frame {
        width: 150px;
        height: 270px;
    }
    
    .dark-phone {
        width: 170px;
        height: 300px;
    }
    
    .features,
    .app-section,
    .team,
    .contact {
        padding: 60px 0;
    }
}
