@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

html, body {
    min-height: 100vh;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, 
        #5DC9FF 0%,    /* More saturated blue */
        #85ADFF 30%,   /* Slightly deeper blue */
        #FF9DE0 70%,   /* More vibrant pink */
        #FF8BA0 100%   /* Slightly deeper coral */
    );
    background-attachment: fixed;  /* Prevent gradient from scrolling */
    color: #000;
    line-height: 1.6;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.logo-text {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.9;
    margin-top: 0.5rem;
}

.logo-text .vsd {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.05em;
    margin-bottom: 0.2rem;
}

.logo-text .studio {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.connect-button, .connect-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.connect-button:hover, .connect-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.hero-section {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.highlight {
    color: #fff;
    background: #000;
    padding: 0.2rem 0.5rem;
    font-weight: 500;
}

.hero-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.services-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.services-header {
    margin-bottom: 3rem;
}

.services-header p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.services-header .gradient-text {
    background: linear-gradient(90deg, #FF2D55 0%, #2D7FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1;
}

.services-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 4rem;
}

.website-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.website-description {
    flex: 1;
}

.website-description h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.website-description p {
    font-weight: 300;
}

.pricing-tiers {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    max-width: 300px;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
}

.pricing-card li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.cta-wrapper {
    position: relative;
    display: inline-block;
    margin: 15px 15px 30px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(90deg, #FF2D55 0%, #2D7FFF 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-outline {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    z-index: 0;
    pointer-events: none;
}

.cta-button:hover {
    transform: translate(-4px, -4px);
}

.cta-button:hover .arrow {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.arrow {
    font-size: 1.6rem;
    background: white;
    color: #FF2D55;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-brand .logo-text {
    margin: 0;
}

.footer-brand .vsd {
    color: white;
}

.footer-brand .studio {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Connect Page Styles */
.connect-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.connect-hero {
    padding: 4rem 0;
}

.connect-header {
    margin-bottom: 2rem;
}

.connect-header p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.connect-header h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.connect-intro {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-form {
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D7FFF;
}

.services-group {
    margin: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-item {
    position: relative;
}

.service-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.service-box {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item input[type="checkbox"]:checked + .service-box {
    background: linear-gradient(90deg, #FF2D55 0%, #2D7FFF 100%);
    color: white;
    border-color: transparent;
}

.service-item:hover .service-box {
    border-color: #2D7FFF;
}

.submit-btn {
    background: linear-gradient(90deg, #FF2D55 0%, #2D7FFF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translate(-3px, -3px);
}

.submit-btn:hover::after {
    transform: translate(2px, 2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    .gradient-text {
        font-size: 2rem;
    }

    /* Layout */
    .services-content {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-tiers {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    /* Form */
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Header */
    .main-header {
        padding: 1rem;
    }

    .logo-text .vsd {
        font-size: 2rem;
    }

    .logo-text .studio {
        font-size: 1.2rem;
    }

    /* Sections */
    .connect-hero,
    .services-section {
        padding: 2rem 0;
    }

    .connect-header h1,
    .services-header .gradient-text {
        font-size: 2.4rem;
    }

    .website-description h3 {
        font-size: 1.4rem;
    }

    .website-description p {
        font-size: 1rem;
    }

    /* Spacing */
    .connect-container,
    .services-section {
        padding: 0 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    /* Buttons */
    .connect-btn,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .connect-header h1,
    .services-header .gradient-text {
        font-size: 2rem;
    }

    .logo-text .vsd {
        font-size: 1.8rem;
    }

    .logo-text .studio {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
