/* ========================================
   COMPONENTS STYLES
   Estilos para todos los componentes del theme
   ======================================== */

/* ========================================
   HEADER
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.5s ease;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(25, 25, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

.site-branding .site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: var(--primary);
}

.nav-wrapper {
    display: none;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 9999px;
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--foreground);
}

@media (min-width: 768px) {
    .nav-wrapper {
        display: flex;
    }
}

/* Portfolio Button */
.btn-portfolio {
    display: none;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(79, 209, 197, 0.3);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(79, 209, 197, 0.05));
    color: var(--foreground);
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    border-color: var(--primary);
    background: rgba(79, 209, 197, 0.15);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .btn-portfolio {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    color: var(--foreground);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 1.25rem;
}

.menu-icon .line {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(25, 25, 30, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin-bottom: 2rem;
}

.mobile-nav-menu li a {
    font-size: 2rem;
    color: var(--foreground);
    transition: color 0.5s ease;
}

.mobile-nav-menu li a:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(25, 25, 30, 0.8), transparent, rgba(25, 25, 30, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 5rem;
}

.hero-inner {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge .icon {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), rgba(79, 209, 197, 0.8), rgba(79, 209, 197, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(to right, var(--foreground), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-cta-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: var(--background);
}

.section-header {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(79, 209, 197, 0.5);
    box-shadow: 0 20px 40px rgba(79, 209, 197, 0.1);
    transform: translateY(-8px);
}

.card-inner {
    padding: 2rem;
}

@media (min-width: 768px) {
    .card-inner {
        padding: 2.5rem;
    }
}

.service-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 25, 30, 0.6), transparent);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: rgba(79, 209, 197, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(79, 209, 197, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Specific Services */
.specific-services {
    margin-top: 4rem;
}

.specific-services-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .specific-services-content {
        grid-template-columns: 1fr 1fr;
    }
}

.specific-services-text {
    max-width: 100%;
}

.specific-services-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.specific-services-grid {
    display: grid;
    gap: 1rem;
}

/* Accordion Styles */
.accordion-item {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(79, 209, 197, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-title {
    flex: 1;
}

.accordion-icon {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.accordion-header:hover .accordion-icon {
    color: var(--primary);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Grid trick: animates to real content height – no max-height lag */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-content-inner {
    overflow: hidden;
    padding: 0 1.25rem 0;
    color: var(--muted-foreground);
    line-height: 1.6;
    transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header[aria-expanded="true"] + .accordion-content .accordion-content-inner {
    padding: 0 1.25rem 1.25rem;
}

.accordion-content-inner p {
    margin: 0;
}

.specific-services-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.services-tech-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);

}

/* Deprecated - replaced by accordion
.specific-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s ease;
}

.specific-service-item:hover {
    border-color: rgba(79, 209, 197, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.specific-service-item:hover .icon {
    color: var(--primary);
    transform: translate(4px, -4px);
}

.specific-service-item .icon {
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}
*/

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-accent {
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* Profile Panel - Simple */
.about-profile {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .about-profile {
        justify-content: flex-start;
    }
}

.profile-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(79, 209, 197, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(79, 209, 197, 0.5);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info {
    margin-bottom: 1.5rem;
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 1rem;
    color: #4fd1c5;
    margin-bottom: 0.5rem;
}

.profile-handle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 209, 197, 0.15);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #4fd1c5;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4fd1c5;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.profile-btn {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #4fd1c5, #3ba89c);
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.3);
    color: #ffffff;
}

.about-text {
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text p:first-child {
    color: var(--muted-foreground);
}

.about-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.signature-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: radial-gradient(circle at top, rgba(79, 209, 197, 0.08), transparent 60%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 60%);
    overflow: hidden;
}

.services-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.services-particles-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    color: var(--foreground);
}

.services-hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.services-hero-cta {
    display: flex;
    justify-content: center;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(79, 209, 197, 0.5), rgba(79, 209, 197, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-featured {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.08), rgba(79, 209, 197, 0.03));
    border: 1px solid rgba(79, 209, 197, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #4fd1c5, rgba(79, 209, 197, 0.8));
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: rgba(79, 209, 197, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.pricing-body {
    margin-bottom: 2rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.features-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.features-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-wrapper {
    position: relative;
}

.timeline-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        rgba(79, 209, 197, 0.2),
        rgba(79, 209, 197, 0.6),
        rgba(79, 209, 197, 0.2)
    );
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.timeline-left {
    justify-content: flex-end;
}

.timeline-right {
    justify-content: flex-start;
}

.timeline-left .timeline-content {
    text-align: right;
}

.timeline-right .timeline-content {
    text-align: left;
}

.timeline-content {
    position: relative;
    flex: 0 0 calc(50% - 4rem);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4fd1c5, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    background: rgba(79, 209, 197, 0.2);
    border-color: var(--primary);
    transform: rotate(15deg) scale(1.1);
}

.timeline-marker {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: rgba(25, 25, 30, 0.9);
    border: 3px solid rgba(79, 209, 197, 0.5);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(79, 209, 197, 0.4);
}

.timeline-step:hover .timeline-dot {
    background: rgba(79, 209, 197, 0.9);
    border-color: rgba(79, 209, 197, 1);
    box-shadow: 0 0 25px rgba(79, 209, 197, 0.8);
    transform: scale(1.3);
}

/* Responsive Timeline */
@media (max-width: 900px) {
    .timeline-progress-line {
        left: 24px;
    }

    .timeline-step {
        flex-direction: row;
        justify-content: flex-start !important;
        margin-bottom: 2rem;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        text-align: left;
    }

    .timeline-content {
        flex: 1;
    }

    .timeline-left .timeline-marker {
        order: -1;
    }

    .timeline-right .timeline-marker {
        order: -1;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-number {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }
}

/* Premium Bundles */
.bundles-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bundle-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(79, 209, 197, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bundle-premium-card:hover .bundle-glow {
    opacity: 1;
}

.bundle-premium-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.bundle-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

.bundle-icon-wrapper {
    margin-bottom: 1.5rem;
}

.bundle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
}

.bundle-premium-card:hover .bundle-icon {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.25), rgba(79, 209, 197, 0.1));
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.2);
}

.bundle-header {
    margin-bottom: 1.5rem;
}

.bundle-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bundle-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bundle-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.bundle-highlights {
    display: grid;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.bundle-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.services-other-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .services-other-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 576px) and (max-width: 899px) {
    .services-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Addon Cards */
.service-addon-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(79, 209, 197, 0.6), rgba(79, 209, 197, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-addon-card:hover::before {
    transform: translateX(0);
}

.service-addon-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-addon-card:hover .addon-icon {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(79, 209, 197, 0.1));
    border-color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.addon-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.addon-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.addon-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.other-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.services-form {
    position: relative;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.03), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.form-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 209, 197, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(79, 209, 197, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

.services-request-form {
    display: grid;
    gap: 2.5rem;
}

.form-section {
    display: grid;
    gap: 1.5rem;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section-title svg {
    color: var(--primary);
}

.services-request-form .form-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .services-request-form .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.services-request-form input,
.services-request-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: var(--foreground);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.services-request-form input::placeholder,
.services-request-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.services-request-form input:focus,
.services-request-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

.services-request-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.services-request-form button {
    min-width: 280px;
}

.form-privacy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 400px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    position: relative;
    overflow: hidden;
}

/* Featured Project */
.portfolio-featured {
    margin-bottom: 3rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

@media (min-width: 1024px) {
    .featured-card {
        grid-template-columns: 1.2fr 1fr;
    }
}

.featured-card:hover {
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(79, 209, 197, 0.15);
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(79, 209, 197, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.featured-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.featured-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(79, 209, 197, 0.12);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    color: #ffffff;
}

.portfolio-overlay-content .icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.portfolio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.portfolio-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: rgba(79, 209, 197, 0.4);
    color: var(--primary);
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    padding: 3rem 0;
}

.portfolio-cta-text {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ========================================
   IMAGE LOADING & SKELETON EFFECTS
   ======================================== */

.portfolio-image-wrapper,
.featured-image-wrapper,
.service-image {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.portfolio-image-wrapper.is-loaded,
.featured-image-wrapper.is-loaded,
.service-image.is-loaded {
    background: none;
    animation: none;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.portfolio-image,
.featured-image,
.service-image img {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Card 3D Loading State */
.card-3d {
    position: relative;
}

.card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card-3d.loading::before {
    opacity: 1;
}

/* ========================================
   STARS BACKGROUND
   ======================================== */

.section-with-stars {
    position: relative;
    overflow: hidden;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.stars-background::before,
.stars-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent),
        radial-gradient(1.5px 1.5px at 45% 20%, rgba(79, 209, 197, 0.8), transparent),
        radial-gradient(1px 1px at 70% 45%, white, transparent),
        radial-gradient(1px 1px at 25% 65%, white, transparent),
        radial-gradient(1.5px 1.5px at 85% 85%, rgba(79, 209, 197, 0.6), transparent),
        radial-gradient(1px 1px at 40% 95%, white, transparent),
        radial-gradient(1px 1px at 95% 25%, white, transparent),
        radial-gradient(1px 1px at 10% 40%, white, transparent),
        radial-gradient(1px 1px at 55% 10%, white, transparent),
        radial-gradient(1px 1px at 75% 90%, white, transparent),
        radial-gradient(1.5px 1.5px at 12% 15%, rgba(79, 209, 197, 0.7), transparent),
        radial-gradient(1px 1px at 65% 35%, white, transparent),
        radial-gradient(1px 1px at 30% 55%, white, transparent),
        radial-gradient(1px 1px at 88% 50%, white, transparent),
        radial-gradient(1px 1px at 18% 25%, white, transparent),
        radial-gradient(1px 1px at 42% 8%, white, transparent),
        radial-gradient(1px 1px at 78% 62%, white, transparent),
        radial-gradient(1.5px 1.5px at 52% 88%, rgba(79, 209, 197, 0.7), transparent),
        radial-gradient(1px 1px at 8% 72%, white, transparent),
        radial-gradient(1px 1px at 68% 18%, white, transparent),
        radial-gradient(1px 1px at 92% 42%, white, transparent),
        radial-gradient(1px 1px at 22% 58%, white, transparent),
        radial-gradient(1px 1px at 48% 78%, white, transparent),
        radial-gradient(1.5px 1.5px at 72% 28%, rgba(79, 209, 197, 0.6), transparent),
        radial-gradient(1px 1px at 38% 48%, white, transparent),
        radial-gradient(1px 1px at 82% 68%, white, transparent),
        radial-gradient(1px 1px at 28% 12%, white, transparent),
        radial-gradient(1px 1px at 58% 92%, white, transparent),
        radial-gradient(1px 1px at 14% 52%, white, transparent),
        radial-gradient(1px 1px at 76% 32%, white, transparent),
        radial-gradient(1.5px 1.5px at 96% 76%, rgba(79, 209, 197, 0.8), transparent),
        radial-gradient(1px 1px at 44% 64%, white, transparent),
        radial-gradient(1px 1px at 64% 4%, white, transparent),
        radial-gradient(1px 1px at 4% 84%, white, transparent);
    background-size: 200% 200%, 150% 150%, 180% 180%, 220% 220%, 190% 190%,
                     170% 170%, 210% 210%, 160% 160%, 195% 195%, 185% 185%,
                     175% 175%, 205% 205%, 215% 215%, 165% 165%, 200% 200%,
                     180% 180%, 190% 190%, 170% 170%, 210% 210%, 185% 185%,
                     195% 195%, 160% 160%, 220% 220%, 175% 175%, 205% 205%,
                     165% 165%, 215% 215%, 155% 155%, 225% 225%, 170% 170%,
                     200% 200%, 180% 180%, 190% 190%, 210% 210%, 175% 175%,
                     185% 185%, 195% 195%, 205% 205%, 165% 165%, 215% 215%;
    background-position: 0 0, 40% 40%, 20% 20%, 60% 60%, 80% 80%,
                        15% 15%, 90% 90%, 45% 45%, 70% 70%, 25% 25%,
                        85% 85%, 35% 35%, 95% 95%, 10% 10%, 55% 55%,
                        75% 75%, 5% 5%, 65% 65%, 30% 30%, 50% 50%,
                        18% 25%, 42% 8%, 78% 62%, 52% 88%, 8% 72%,
                        68% 18%, 92% 42%, 22% 58%, 48% 78%, 72% 28%,
                        38% 48%, 82% 68%, 28% 12%, 58% 92%, 14% 52%,
                        76% 32%, 96% 76%, 44% 64%, 64% 4%, 4% 84%;
    opacity: 0.5;
    animation: twinkle 3s ease-in-out infinite alternate;
}

.stars-background::after {
    animation-delay: 1.5s;
    animation-duration: 4s;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Ensure content stays above stars */
.section-with-stars .container {
    position: relative;
    z-index: 2;
}

.section-with-stars .container > * {
    position: relative;
    z-index: 2;
}

.section-with-stars .section-header,
.section-with-stars .services-grid,
.section-with-stars .specific-services,
.section-with-stars .about-grid,
.section-with-stars .skills-grid,
.section-with-stars .portfolio-featured,
.section-with-stars .portfolio-grid,
.section-with-stars .testimonials-grid,
.section-with-stars .contact-grid,
.section-with-stars .contact-cta-wrapper {
    position: relative;
    z-index: 2;
}

.section-with-stars .service-card,
.section-with-stars .portfolio-card,
.section-with-stars .featured-card,
.section-with-stars .testimonial-card,
.section-with-stars .contact-card,
.section-with-stars .profile-card,
.section-with-stars h1,
.section-with-stars h2,
.section-with-stars h3,
.section-with-stars p,
.section-with-stars .section-tag,
.section-with-stars .section-title,
.section-with-stars .section-description {
    position: relative;
    z-index: 2;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
}

.avatar-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.3), transparent 70%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.avatar-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(79, 209, 197, 0.05));
    border: 2px solid rgba(79, 209, 197, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--foreground), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Story */
.about-story {
    padding: 6rem 0;
}

.about-content-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .about-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.about-text-content {
    display: grid;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.highlight-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(79, 209, 197, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
}

/* Skills Grid */
.about-skills {
    padding: 6rem 0;
}

.skills-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.skill-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.skill-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.25), rgba(79, 209, 197, 0.1));
}

.skill-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.skill-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Vision Section */
.about-vision {
    padding: 6rem 0;
}

.vision-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

@media (max-width: 768px) {
    .vision-card {
        padding: 3rem 2rem;
    }
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.vision-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.vision-content {
    display: grid;
    gap: 1.5rem;
}

.vision-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.about-stats {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(79, 209, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(79, 209, 197, 0.15);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Pillars Section */
.about-pillars {
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.25);
    transform: translateY(-8px);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 209, 197, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pillar-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.pillar-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Portfolio Preview */
.about-portfolio {
    padding: 6rem 0;
}

.portfolio-preview-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

@media (min-width: 576px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.portfolio-preview-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.portfolio-cta {
    text-align: center;
}

/* Testimonials */
.about-testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.author-info {
    display: grid;
    gap: 0.25rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
}

.cta-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 3rem 2rem;
    }
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-button {
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 50%;
    color: var(--primary);
}

.hero-icon svg {
    filter: drop-shadow(0 0 20px rgba(79, 209, 197, 0.5));
}

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }

    .hero-icon {
        width: 60px;
        height: 60px;
    }

    .contact-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section .container {
    width: 100%;
    max-width: 1280px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Info */
.contact-info-wrapper {
    width: 100%;
}

.section-header-small {
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-2px);
}

.info-card-highlight {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(79, 209, 197, 0.2);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 209, 197, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.info-value:hover {
    color: var(--primary);
}

.info-value-brand {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Social */
.contact-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(79, 209, 197, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Form Tabs */
.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.form-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.05);
}

.form-tab.active {
    background: var(--primary);
    color: var(--background);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-field input,
.form-field textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted-foreground);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Captcha */
.form-captcha {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-captcha label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.captcha-wrapper input {
    width: 80px;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.3s ease;
}

.captcha-wrapper input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

/* Form Submit */
.form-submit {
    padding-top: 0.5rem;
}

/* FAQ Section */
.contact-faq {
    padding: 6rem 0 8rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(79, 209, 197, 0.3);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.05), rgba(255, 255, 255, 0.03));
    border-color: rgba(79, 209, 197, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--foreground);
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding: 0 2rem 1.5rem;
}

@media (max-width: 576px) {
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-answer li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.faq-answer strong {
    color: var(--foreground);
    font-weight: 600;
}

.faq-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
}

.faq-link:hover {
    opacity: 0.8;
}

/* ========================================
   PRESUPUESTOS PAGE STYLES
   ======================================== */

/* Presupuestos Hero */
.presupuestos-hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    overflow: hidden;
}

.presupuestos-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.presupuestos-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.presupuestos-hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .presupuestos-hero {
        padding: 8rem 0 4rem;
    }
}

/* Beneficios Section */
.presupuestos-beneficios {
    padding: 6rem 0;
    position: relative;
}

.beneficios-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.beneficio-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beneficio-card:hover::before {
    opacity: 1;
}

.beneficio-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.25), rgba(79, 209, 197, 0.1));
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.2);
}

.beneficio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.beneficio-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.presupuestos-value-prop {
    max-width: 900px;
    margin: 0 auto;
}

.value-prop-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-prop-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .value-prop-content {
        padding: 2rem 1.5rem;
    }
}

/* Formulario Section */
.presupuestos-form-section {
    padding: 6rem 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-intro-title {
        font-size: 1.75rem;
    }
}

.form-intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

.presupuesto-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .presupuesto-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

.presupuesto-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.presupuesto-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

@media (max-width: 576px) {
    .presupuesto-form .form-row {
        grid-template-columns: 1fr;
    }
}

.presupuesto-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.presupuesto-form .form-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.presupuesto-form input,
.presupuesto-form textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.presupuesto-form input::placeholder,
.presupuesto-form textarea::placeholder {
    color: var(--muted-foreground);
}

.presupuesto-form input:focus,
.presupuesto-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

.presupuesto-form textarea {
    resize: vertical;
    min-height: 150px;
}

.presupuesto-form .form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.form-privacy-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 400px;
}

/* CTA Final Section */
.presupuestos-cta {
    padding: 6rem 0 8rem;
}

.cta-final-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-final-card {
        padding: 3rem 2rem;
    }
}

.cta-final-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(79, 209, 197, 0.05));
    border: 1px solid rgba(79, 209, 197, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

.cta-final-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 2rem;
    }
}

.cta-final-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}
