/* Full Stack Development Page Styles */

/* Page-level fullstack styles */
.fullstack-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    font-family: 'JetBrains Mono', monospace;
}

.fullstack-page h1, .fullstack-page h2, .fullstack-page h3, .fullstack-page h4, .fullstack-page h5, .fullstack-page h6 {
    font-family: 'Orbitron', monospace;
}

/* Enhanced gradient effects for fullstack theme */
.fullstack-gradient-text {
    background: linear-gradient(135deg, #059669, #0d9488, #0891b2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Fullstack-themed animations */
@keyframes fullstackPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.fullstack-icon {
    animation: fullstackPulse 2s ease-in-out infinite;
}

/* Circuit board background effect */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 24%, rgba(5, 150, 105, 0.05) 25%, rgba(5, 150, 105, 0.05) 26%, transparent 27%, transparent 74%, rgba(5, 150, 105, 0.05) 75%, rgba(5, 150, 105, 0.05) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Full Stack Hero Section Styles */
.fullstack-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.fullstack-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fullstack-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fullstack-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    border: 2px solid rgba(5, 150, 105, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.fullstack-badge .badge-icon {
    font-size: 1.2rem;
}

.fullstack-badge .badge-text {
    font-weight: 600;
    color: #059669;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.fullstack-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.fullstack-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    max-width: 500px;
}

.fullstack-hero-benefits {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.fullstack-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fullstack-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fullstack-cta-button.primary {
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.fullstack-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.fullstack-cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #059669;
    border: 2px solid rgba(5, 150, 105, 0.3);
    backdrop-filter: blur(10px);
}

.fullstack-cta-button.secondary:hover {
    background: rgba(5, 150, 105, 0.1);
    border-color: #059669;
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Architecture Demo Visual */
.fullstack-demo-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fullstack-architecture {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.architecture-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(5, 150, 105, 0.2);
}

.architecture-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.architecture-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.architecture-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.layer-item:hover {
    background: rgba(5, 150, 105, 0.05);
    transform: translateX(4px);
}

.layer-item.frontend { border-left-color: #ec4899; }
.layer-item.api { border-left-color: #8b5cf6; }
.layer-item.backend { border-left-color: #f59e0b; }
.layer-item.database { border-left-color: #ef4444; }
.layer-item.infrastructure { border-left-color: #3b82f6; }

.layer-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.layer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layer-title {
    font-weight: 700;
    color: #1e293b;
}

.layer-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.layer-techs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tech-tag {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.layer-progress {
    width: 100px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #059669, #0d9488);
    border-radius: 3px;
    animation: progressAnimation 2s ease-out;
}

@keyframes progressAnimation {
    from { width: 0; }
}

.architecture-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid rgba(5, 150, 105, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 900;
    font-size: 1.2rem;
    color: #059669;
    font-family: 'Orbitron', monospace;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    border: 2px solid rgba(5, 150, 105, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-badge .badge-icon {
    font-size: 1.2rem;
}

.section-badge .badge-text {
    font-weight: 600;
    color: #059669;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Overview Section */
.fullstack-overview {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.fullstack-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fullstack-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(5, 150, 105, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.2);
}

.card-icon {
    margin-bottom: 1rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-example {
    background: rgba(5, 150, 105, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #059669;
}

.example-label {
    font-weight: 600;
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.example-text {
    color: #475569;
    font-size: 0.9rem;
    font-style: italic;
}

/* Transformation Demo */
.fullstack-transformation-demo {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.demo-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.before-after-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.before-section, .after-section {
    padding: 2rem;
    border-radius: 12px;
}

.before-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 113, 133, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.after-section {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.section-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
}

.section-label.before {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.section-label.after {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.task-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.task-time {
    font-size: 0.9rem;
    color: #64748b;
}

.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #0d9488);
    border-radius: 50%;
    color: white;
}

.transformation-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Business Impact */
.business-impact {
    margin-top: 4rem;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.impact-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reason-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.reason-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.reason-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Technologies Section */
.fullstack-technologies {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.fullstack-technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.category-description {
    color: #64748b;
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover,
.tech-item.tech-highlight {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.tech-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.tech-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tech-usage {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Process Section */
.fullstack-process {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.fullstack-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #059669, #0d9488);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.marker-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.marker-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-item.active .timeline-content {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}


.timeline-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-deliverables {
    margin-bottom: 1.5rem;
}

.timeline-deliverables h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.timeline-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-deliverables li {
    color: #64748b;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.ai-note-icon {
    font-size: 1.2rem;
}

.ai-note-text {
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Advantages */
.process-advantages {
    margin-top: 4rem;
}

.advantages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Development Comparison */
.development-comparison {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.comparison-items.traditional .comparison-item {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-items.devstack .comparison-item {
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.item-icon {
    font-size: 1.2rem;
}

.item-text {
    color: #1e293b;
    font-weight: 500;
}

/* Client Testimonial */
.client-testimonial {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(13, 148, 136, 0.05));
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quote-icon {
    font-size: 4rem;
    color: #059669;
    line-height: 1;
    font-family: 'Georgia', serif;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
}

.testimonial-author {
    margin-top: 2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #059669;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-company {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #059669;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.fullstack-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.fullstack-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-header {
    margin-bottom: 4rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.2);
    border: 2px solid rgba(5, 150, 105, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.cta-badge .badge-icon {
    font-size: 1.2rem;
}

.cta-badge .badge-text {
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin: 0 0 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.value-prop-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-prop-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.prop-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.prop-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.prop-description {
    color: #cbd5e1;
    line-height: 1.5;
}

.cta-process-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
}

.step-description {
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cta-actions {
    margin: 4rem 0;
}

.primary-action {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 0 0.5rem;
}

.cta-button.primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #059669, #0d9488);
    color: white;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.cta-button.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.button-text {
    font-weight: 700;
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.action-note {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    font-style: italic;
}

.secondary-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-testimonial-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.testimonial-text {
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-text {
    color: #cbd5e1;
    font-weight: 600;
}

.urgency-note {
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 1.5rem;
    color: #f59e0b;
}

.urgency-text {
    color: #cbd5e1;
    line-height: 1.5;
}

.urgency-text .highlight {
    color: #fbbf24;
    font-weight: 700;
}

/* Animation classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Initial state for animations - only specific elements when JS loads */
.js-enabled .fullstack-overview-grid .overview-card:not(.animate-in),
.js-enabled .fullstack-technologies .tech-category:not(.animate-in),
.js-enabled .fullstack-process .timeline-item:not(.animate-in) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Make sure page content is visible by default */
.fullstack-page {
    opacity: 1;
}

.fullstack-hero {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fullstack-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .fullstack-hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .architecture-layers {
        gap: 0.75rem;
    }
    
    .layer-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .layer-techs {
        justify-content: center;
    }
    
    .before-after-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .arrow-section {
        display: flex;
        justify-content: center;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-left: 1rem;
    }
    
    .process-timeline::before {
        left: 1rem;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .client-testimonial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .secondary-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-testimonial-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-guarantees {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fullstack-hero {
        padding-top: 60px;
    }
    
    .fullstack-hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .fullstack-overview-container,
    .fullstack-technologies-container,
    .fullstack-process-container,
    .fullstack-cta-container {
        padding: 0 1rem;
    }
    
    .overview-card,
    .tech-category,
    .timeline-content,
    .example-card {
        padding: 1.5rem;
    }
    
    .cta-guarantees {
        grid-template-columns: 1fr;
    }
}