/* Hero */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 2rem 6rem;
    position: relative;
    overflow: hidden;
}

/* Radial glow */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(62, 236, 213, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle animated shimmer */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(62, 236, 213, 0.02) 50%,
        transparent 100%
    );
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Decorative line under hero */
.hero + * {
    position: relative;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

/* Pricing */
.pricing-section {
    background: var(--gradient-dark);
    color: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 236, 213, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section .section-title { color: var(--white); }
.pricing-section .section-subtitle { color: var(--text-lighter); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

/* Process */
.process-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* About */
.about-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.about-section .container > div {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

.about-section .container > div p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-size: 1.02rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(62, 236, 213, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
    font-weight: 400;
    color: var(--white);
    position: relative;
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    border-color: rgba(62, 236, 213, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service Detail Page Styles */
.service-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 180px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(62, 236, 213, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1.25rem;
    font-weight: 400;
    position: relative;
    letter-spacing: -0.02em;
}

.service-hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}

.content-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 3.5rem;
    font-weight: 400;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.content-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 400;
}

.content-section ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 500;
}

/* Blog Detail Page */
.blog-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 180px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(62, 236, 213, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
}

.blog-meta {
    color: var(--text-lighter);
    font-size: 0.85rem;
    font-weight: 400;
    position: relative;
}

.blog-content {
    max-width: 660px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-content h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin: 3rem 0 1rem;
    font-weight: 400;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Location */
.location-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

/* Divider */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 3rem;
    opacity: 0.4;
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero { padding: 140px 1.5rem 4rem; }
    .service-hero { padding: 150px 1.5rem 80px; }
    .blog-hero { padding: 150px 1.5rem 60px; }
    .section { padding: 5rem 0; }
}
