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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.logo h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.nav-links a {
    color: #E8F4F8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #e94560;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E8F4F8;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    color: #fff;
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.15rem);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.5);
}

.features {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: #2C3E50;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0 10px;
}

.feature-card {
    background: #fff;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.2);
    border-color: #e94560;
}

.feature-card h3 {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
}

.feature-card p {
    color: #546E7A;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.cta-section {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    color: #fff;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .cta-button {
    background: #fff;
    color: #e94560;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #E8F4F8;
    padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.footer-section h3 {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
}

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

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

.footer-section a {
    color: #E8F4F8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a:hover {
    color: #e94560;
    padding-left: 5px;
}

.footer-section p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #90A4AE;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid3" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
}

.page-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #E8F4F8;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #ffffff;
}

.about-content h3 {
    color: #2C3E50;
    margin-top: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #546E7A;
}

.about-content ul {
    margin-left: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.9;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #546E7A;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}

.service-detail {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border-left: 6px solid #e94560;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
}

.service-detail h3 {
    color: #2C3E50;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-detail p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 1.75rem;
    line-height: 1.9;
    color: #546E7A;
}

.service-detail ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.service-detail ul li {
    padding-left: 2rem;
    position: relative;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #2C3E50;
}

.service-detail ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: 0 10px;
}

.pricing-card {
    background: #fff;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(233, 69, 96, 0.25);
    border-color: #e94560;
}

.pricing-card.featured {
    border: 3px solid #e94560;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    color: #fff;
    padding: 0.65rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    color: #2C3E50;
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.price {
    margin: 2rem 0;
}

.price .amount {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    display: block;
    color: #78909C;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ECEFF1;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #546E7A;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    color: #fff;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.4);
}

.pricing-info {
    background: #fff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 25px;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.pricing-info h3 {
    text-align: center;
    color: #2C3E50;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.info-item {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.info-item h4 {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
}

.info-item p {
    color: #546E7A;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
}

.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
}

.contact-info h3 {
    color: #2C3E50;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: #546E7A;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 2.5rem);
}

.contact-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    border-left: 5px solid #e94560;
}

.contact-item h4 {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
}

.contact-item p {
    color: #546E7A;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
}

.contact-item a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e94560;
}

.contact-form-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
    color: #2C3E50;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.form-group {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2C3E50;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem);
    border: 2px solid #E0E7EF;
    border-radius: 12px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    color: #fff;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.4);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        justify-content: center;
    }

    .hero {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .service-detail ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
