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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f7fafc;
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background-image: url('logo.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

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

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: #2d3748;
}

.dropdown-arrow {
    font-size: 0.75rem;
    opacity: 0.6;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.login-btn:hover {
    color: #2d3748;
}

.get-started-btn {
    background: #38b2ac;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 2px solid #38b2ac;
}

.get-started-btn:hover {
    background: #319795;
    border-color: #319795;
    transform: translateY(-1px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    padding-top: 10rem;
}

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-ideograph;
}

.cta-button {
    background: #38b2ac;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(56, 178, 172, 0.3);
}

.cta-button:hover {
    background: #319795;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.4);
}

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

.content-section.gray-bg {
    background: #f8f9fa;
}

.content-section.gradient-bg {
    background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
    color: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.section-title.white-text {
    color: white;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #4a5568;
}

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

.cards-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.glass-card h3 {
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.9);
}

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

.gray-bg .contact-form {
    background: white;
}

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

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

.form-group input,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #38b2ac;
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
}

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

/* About Page Styles */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 6rem 0 2rem 0;
}

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

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

.about-text {
    padding-right: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.team-illustration {
    position: relative;
    height: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-members {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 60%;
    margin-bottom: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: teamFloat 3s ease-in-out infinite;
}

.team-member.member-1 {
    animation-delay: 0s;
}

.team-member.member-2 {
    animation-delay: 1s;
}

.team-member.member-3 {
    animation-delay: 2s;
}

.member-head {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.member-1 .member-head {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.member-2 .member-head {
    background: linear-gradient(135deg, #38b2ac, #319795);
}

.member-3 .member-head {
    background: linear-gradient(135deg, #4fd1c7, #63b3ed);
}

.member-body {
    width: 40px;
    height: 80px;
    border-radius: 20px 20px 5px 5px;
}

.member-1 .member-body {
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.member-2 .member-body {
    background: linear-gradient(180deg, #38b2ac, #319795);
}

.member-3 .member-body {
    background: linear-gradient(180deg, #4fd1c7, #63b3ed);
}

.collaboration-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.code-block {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 40px;
    background: #2d3748;
    border-radius: 4px;
    opacity: 0.7;
    animation: codeFloat 4s ease-in-out infinite;
}

.design-element {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ed8936, #f6ad55);
    border-radius: 50%;
    opacity: 0.7;
    animation: designFloat 3.5s ease-in-out infinite;
}

.idea-bulb {
    position: absolute;
    bottom: 25%;
    left: 20%;
    width: 30px;
    height: 40px;
    background: linear-gradient(180deg, #f6e05e, #ecc94b);
    border-radius: 15px 15px 5px 5px;
    opacity: 0.8;
    animation: bulbGlow 2s ease-in-out infinite alternate;
}

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

@keyframes codeFloat {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(10px, -5px) rotate(2deg); }
}

@keyframes designFloat {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-8px, 8px) scale(1.1); }
}

@keyframes bulbGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Contact Page Styles */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    padding: 6rem 0 2rem 0;
}

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

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

.contact-text {
    padding-left: 2rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #2d3748;
}

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

.communication-illustration {
    position: relative;
    height: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.communication-scene {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-device {
    position: relative;
    z-index: 3;
}

.screen {
    width: 200px;
    height: 130px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.keyboard {
    width: 220px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
}

.message-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubble {
    position: absolute;
    background: #38b2ac;
    border-radius: 20px;
    opacity: 0.8;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 30px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 40px;
    height: 25px;
    top: 25%;
    right: 20%;
    background: #4fd1c7;
    animation-delay: 1s;
}

.bubble-3 {
    width: 50px;
    height: 28px;
    bottom: 30%;
    left: 25%;
    background: #63b3ed;
    animation-delay: 2s;
}

.contact-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-email {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.icon-phone {
    bottom: 20%;
    right: 15%;
    animation-delay: 0.7s;
}

.icon-chat {
    top: 60%;
    left: 10%;
    animation-delay: 1.4s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-illustration {
    position: relative;
    height: 400px;
    margin-top: 3rem;
}

.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.icon-3 { top: 40%; left: 5%; animation-delay: 1s; }
.icon-4 { top: 60%; right: 10%; animation-delay: 1.5s; }
.icon-5 { top: 80%; left: 20%; animation-delay: 2s; }
.icon-6 { top: 15%; left: 45%; animation-delay: 2.5s; }
.icon-7 { top: 70%; right: 40%; animation-delay: 3s; }
.icon-8 { top: 35%; right: 30%; animation-delay: 3.5s; }

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

.workspace {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.desk-setup {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.person {
    position: absolute;
    bottom: 120px;
}

.person-1 {
    left: 50px;
    z-index: 3;
}

.person-2 {
    left: 200px;
    z-index: 3;
}

.person-3 {
    right: 50px;
    z-index: 3;
}

.person-head {
    width: 40px;
    height: 40px;
    background: #fbb6ce;
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
}

.person-1 .person-head {
    background: #fbb6ce;
}

.person-2 .person-head {
    background: #f6ad55;
}

.person-3 .person-head {
    background: #68d391;
}

.person-body {
    width: 45px;
    height: 60px;
    border-radius: 20px 20px 5px 5px;
}

.person-1 .person-body {
    background: #fc8181;
}

.person-2 .person-body {
    background: #d69e2e;
}

.person-3 .person-body {
    background: #63b3ed;
}

.glasses {
    position: absolute;
    top: 15px;
    left: 8px;
    width: 24px;
    height: 8px;
    background: #2d3748;
    border-radius: 4px;
    opacity: 0.8;
}

.beard {
    position: absolute;
    bottom: -5px;
    left: 12px;
    width: 16px;
    height: 12px;
    background: #2d3748;
    border-radius: 0 0 8px 8px;
}

.desk {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #d69e2e;
    border-radius: 8px 8px 0 0;
}

.laptop {
    position: absolute;
    width: 50px;
    height: 30px;
    bottom: 120px;
    background: #4a5568;
    border-radius: 4px;
}

.laptop::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 50px;
    height: 25px;
    background: #2d3748;
    border-radius: 4px 4px 0 0;
}

.laptop-1 {
    left: 75px;
}

.laptop-2 {
    left: 225px;
}

.laptop-3 {
    right: 75px;
}

.plant {
    position: absolute;
    bottom: 120px;
    right: 20px;
    width: 20px;
    height: 40px;
    background: #38a169;
    border-radius: 10px 10px 0 0;
}

.speech-bubble {
    position: absolute;
    top: 50px;
    left: 150px;
    width: 40px;
    height: 25px;
    background: #fed7d7;
    border-radius: 15px;
    opacity: 0.8;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fed7d7;
}

.folder {
    position: absolute;
    bottom: 130px;
    left: 150px;
    width: 30px;
    height: 20px;
    background: #f6e05e;
    border-radius: 2px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-container {
        padding-top: 7rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-illustration {
        height: 300px;
    }
    
    .person {
        bottom: 80px;
    }
    
    .desk {
        height: 80px;
    }
    
    .laptop {
        bottom: 80px;
    }
    
    .plant {
        bottom: 80px;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cards-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* About Page Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .team-illustration {
        height: 300px;
    }
    
    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-text {
        padding-left: 0;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .communication-illustration {
        height: 300px;
    }
    
    .screen {
        width: 150px;
        height: 100px;
    }
    
    .keyboard {
        width: 170px;
    }
}