@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary: #EA526F;
    --secondary: #56EDF1;
    --accent: #46BFC2;
    --bg-dark: #0F172A;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-white: #F5F5F5;
    --text-muted: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background gradient blobs */
.blob {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background-color: var(--primary);
}

.blob-2 {
    bottom: -100px;
    right: -100px;
    background-color: var(--secondary);
}

/* Header */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 48px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff7b93 100%);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(234, 82, 111, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(234, 82, 111, 0.5);
}

/* Mockups */
.mockup-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.mockup-main {
    width: 80%;
    z-index: 2;
    position: relative;
}

.mockup-secondary {
    position: absolute;
    width: 60%;
    bottom: -10%;
    right: -10%;
    z-index: 3;
    transition: transform 0.5s ease;
}

.mockup-secondary:hover {
    transform: translate(-10px, -10px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #ddd;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card p {
    color: #666;
}

.contact-card .info {
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
    word-break: break-all;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #ddd;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
}

/* Utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        font-size: 3rem;
    }

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

    .hero-visual {
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .mockup-container {
        max-width: 300px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    margin-bottom: 1rem;
    color: #666;
}

.modal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.modal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.modal-content .cta-button {
    margin-top: 1rem;
}
